PHP mysqli_fetch_field_direct() 函數(shù)

2018-12-08 18:06 更新

PHP mysqli_fetch_field_direct() 函數(shù)

PHP MySQLi 參考手冊(cè) PHP MySQLi 參考手冊(cè)

實(shí)例

返回結(jié)果集中某個(gè)單一字段(列)的 meta-data,并輸出字段名稱(chēng)、表格和最大長(zhǎng)度:

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

$sql="SELECT Lastname,Age FROM Persons ORDER BY Lastname";

if ($result=mysqli_query($con,$sql))
{
// Get field information for "Age"
$fieldinfo=mysqli_fetch_field_direct($result,1);

printf("Name: %sn",$fieldinfo->name);
printf("Table: %sn",$fieldinfo->table);
printf("max. Len: %dn",$fieldinfo->max_length);

// Free result set
mysqli_free_result($result);
}

mysqli_close($con);
?>

定義和用法

mysqli_fetch_field_direct() 函數(shù)從結(jié)果集中取得某個(gè)單一字段(列)的 meta-data,并作為對(duì)象返回。


語(yǔ)法

mysqli_fetch_field_direct(result,fieldnr);

參數(shù) 描述
result 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識(shí)符。
fieldnr 必需。規(guī)定字段號(hào)。必須介于 0 和 字段數(shù)-1 之間。

技術(shù)細(xì)節(jié)

返回值: 返回包含字段定義信息的對(duì)象。如果沒(méi)有可用信息則返回 FALSE。該對(duì)象有下列屬性:
  • name - 列名
  • orgname - 原始的列名(如果指定了別名)
  • table - 表名
  • orgtable - 原始的表名(如果指定了別名)
  • def - 該字段的默認(rèn)值
  • max_length - 字段的最大寬度
  • length - 在表定義中規(guī)定的字段寬度
  • charsetnr - 字段的字符集號(hào)
  • flags - 字段的位標(biāo)志
  • type - 用于字段的數(shù)據(jù)類(lèi)型
  • decimals - 整數(shù)字段,小數(shù)點(diǎn)后的位數(shù)
PHP 版本: 5+


PHP MySQLi 參考手冊(cè) PHP MySQLi 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)