傳回結果集中某個單一欄位(列)的meta-data,並輸出欄位名稱、表格和最大長度:
<?php // 假設資料庫使用者名稱:root,密碼:123456,資料庫:CODERCTO $con=mysqli_connect("localhost","root","123456","CODERCTO"); if (mysqli_connect_errno($con)) { echo "連線MySQL 失敗: " . mysqli_connect_error(); } $sql="SELECT name,url FROM websites ORDER BY alexa";if ($result=mysqli_query($con,$sql)){// 取得欄位"name" 的資訊$fieldinfo=mysqli_fetch_field_direct($result,1);printf("欄位名稱: %s",$fieldinfo->name);echo "<br>";printf("資料表: %s",$fieldinfo->table);echo "<br>";printf("最大長度: %d",$fieldinfo->max_length);// 釋放結果集mysqli_free_result($result);}mysqli_close($ con);?>
mysqli_fetch_field_direct() 函數從結果集中取得某個單一欄位(列)的meta-data,並作為物件傳回。
mysqli_fetch_field_direct( result,fieldnr ) ;
參數 | 描述 |
---|---|
result | 必需。規定由mysqli_query()、mysqli_store_result() 或mysqli_use_result() 傳回的結果集標識符。 |
fieldnr | 必需。規定字段號。必須介於0 和字段數-1 之間。 |
傳回值: | 傳回包含欄位定義資訊的物件。如果沒有可用資訊則傳回FALSE。該物件有下列屬性: name - 列名 orgname - 原始的列名(如果指定了別名) table - 表名 orgtable - 原始的表名(如果指定了別名) def - 該欄位的預設值 max_length - 欄位的最大寬度 length - 在表定義中規定的欄位寬度 charsetnr - 欄位的字元集號 flags - 字段的位元標誌 type - 用於欄位的資料類型 decimals - 整數欄位,小數點後的位數 |
---|---|
PHP 版本: | 5+ |