例
返回元數據單個字段(column)的結果集,然後打印字段的名稱,表格和最大長度:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
{
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: %s\n",$fieldinfo->name);
printf("Table:
%s\n",$fieldinfo->table);
printf("max. Len:
%d\n",$fieldinfo->max_length);
// Free result
set
mysqli_free_result($result);
}
mysqli_close($con);
?>
定義和用法
所述mysqli_fetch_field_direct()函數返回的元數據的單個字段(column)中的結果集,作為對象。
句法
mysqli_fetch_field_direct( result,fieldnr ) ;
參數 | 描述 |
---|---|
result | 需要。 指定由返回的結果集標識符mysqli_query() mysqli_store_result()或mysqli_use_result() |
fieldnr | 需要。 指定字段數。 必須在0和字段的數目之間的整數 - 1 |
技術細節
返回值: | 返回包含字段定義信息的對象。 FALSE如果沒有信息是可用的。 該對象具有以下屬性:
|
---|---|
PHP版本: | 5+ |
<PHP庫MySQLi參考