例
フィールド表すオブジェクトの配列を返す(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を参照