PHP mysqli_fetch_field() 函數(shù)
PHP mysqli_fetch_field() 函數(shù)
返回結(jié)果集中下一字段(列),然后輸出每個字段名稱、表格和最大長度:
<?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)) { // 獲取所有列的字段信息 while ($fieldinfo = mysqli_fetch_field($result)) { printf("字段名: %s\n", $fieldinfo->name); echo "<br>"; printf("數(shù)據(jù)表: %s\n", $fieldinfo->table); echo "<br>"; printf("最大長度: %d\n", $fieldinfo->max_length); echo "<br>"; } // 釋放結(jié)果集 mysqli_free_result($result); } mysqli_close($con); ?>
定義和用法
mysqli_fetch_field() 函數(shù)從結(jié)果集中取得下一字段(列),并作為對象返回。
語法
mysqli_fetch_field(result);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識符。 |
技術(shù)細(xì)節(jié)
返回值: | 返回包含字段定義信息的對象。如果沒有可用信息則返回 FALSE。該對象有下列屬性:
|
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 變量
- PHP 字符串
- PHP 魔術(shù)常量
- PHP 文件上傳
- PHP 發(fā)送電子郵件
- PHP array() 函數(shù)
- PHP array_chunk() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP key() 函數(shù)
- PHP krsort() 函數(shù)
- PHP pos() 函數(shù)
- PHP Libxml 函數(shù)