例
現在のフィールドを取得し、その後、すべてのフィールドのフィールド情報を取得mysqli_field_tell()と、各列の名前、テーブル、および最大長を印刷します:
<?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 info for all fields
while
($fieldinfo=mysqli_fetch_field($result))
{
// Get field cursor position
$currentfield=mysqli_field_tell($result);
printf("Column %d:\n", $currentfield);
printf("Name:
%s\n", $fieldinfo->name);
printf("Table: %s\n",
$fieldinfo->table);
}
// Free result
set
mysqli_free_result($result);
}
mysqli_close($con);
?>
定義と使用法
mysqli_field_tell()関数は、フィールドカーソルの位置を返します。
構文
mysqli_field_tell( result ) ;
パラメーター | 説明 |
---|---|
result | 必須。 返される結果セット識別子指定mysqli_query() mysqli_store_result()又はmysqli_use_result() |
技術的な詳細
戻り値: | フィールドカーソルの現在のオフセットを返します。 |
---|---|
PHPバージョン: | 5+ |
<PHP MySQLiを参照