例
フィールドの数を返します(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))
{
// Return the
number of fields in result set
$fieldcount=mysqli_num_fields($result);
printf("Result set has %d
fields.\n",$fieldcount);
// Free result
set
mysqli_free_result($result);
}
mysqli_close($con);
?>
定義と使用法
mysqli_num_fields()関数は、フィールドの数を返し(columns)結果セット内。
構文
mysqli_num_fields( result ) ;
パラメーター | 説明 |
---|---|
result | 必須。 返される結果セット識別子指定mysqli_query() mysqli_store_result()又はmysqli_use_result() |
技術的な詳細
戻り値: | 結果セット内のフィールドの数を返します。 |
---|---|
PHPバージョン: | 5+ |
<PHP MySQLiを参照