PHP mysqli_fetch_field_direct() 函數(shù)
PHP mysqli_fetch_field_direct() 函數(shù)
返回結(jié)果集中某個單一字段(列)的 meta-data,并輸出字段名稱、表格和最大長度:
<?php // 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); 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("數(shù)據(jù)表: %s",$fieldinfo->table); echo "<br>"; printf("最大長度: %d",$fieldinfo->max_length); // 釋放結(jié)果集 mysqli_free_result($result); } mysqli_close($con); ?>
定義和用法
mysqli_fetch_field_direct() 函數(shù)從結(jié)果集中取得某個單一字段(列)的 meta-data,并作為對象返回。
語法
mysqli_fetch_field_direct(result,fieldnr);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識符。 |
fieldnr | 必需。規(guī)定字段號。必須介于 0 和 字段數(shù)-1 之間。 |
技術(shù)細(xì)節(jié)
返回值: | 返回包含字段定義信息的對象。如果沒有可用信息則返回 FALSE。該對象有下列屬性:
|
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 安裝
- PHP 數(shù)組
- PHP 數(shù)組排序
- PHP 魔術(shù)常量
- PHP Secure E-mails
- PHP 錯誤處理
- PHP array_column() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP asort() 函數(shù)
- PHP count() 函數(shù)
- PHP list() 函數(shù)
- PHP rsort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP 5 Math 函數(shù)
- PHP 雜項 函數(shù)