例
返回表示所述字段的對象數組(columns)中的結果集,則打印每個字段的名稱,表和最大長度:
<?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 all fields
$fieldinfo=mysqli_fetch_fields($result);
foreach
($fieldinfo as $val)
{
printf("Name: %s\n",$val->name);
printf("Table:
%s\n",$val->table);
printf("max. Len:
%d\n",$val->max_length);
}
// Free result
set
mysqli_free_result($result);
}
mysqli_close($con);
?>
定義和用法
所述mysqli_fetch_fields()函數返回表示字段對象的數組(columns)中的結果集。
句法
mysqli_fetch_fields( result ) ;
參數 | 描述 |
---|---|
result | 需要。 指定由返回的結果集標識符mysqli_query() mysqli_store_result()或mysqli_use_result() |
技術細節
返回值: | 返回包含字段定義信息的對象的陣列。 FALSE如果沒有信息是可用的。 該對象具有以下屬性:
|
---|---|
PHP版本: | 5+ |
<PHP庫MySQLi參考