PHP mysqli_num_fields() 函數(shù)
PHP mysqli_num_fields() 函數(shù)
返回結(jié)果集中字段(列)的數(shù)量:
<?php // 假定數(shù)據(jù)庫(kù)用戶名:root,密碼:123456,數(shù)據(jù)庫(kù):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)) { // 返回結(jié)果集中的字段數(shù) $fieldcount=mysqli_num_fields($result); printf("結(jié)果集中有 %d 個(gè)字段。",$fieldcount); // 釋放結(jié)果集 mysqli_free_result($result); } mysqli_close($con); ?>
定義和用法
mysqli_num_fields() 函數(shù)返回結(jié)果集中字段(列)的數(shù)量。
語(yǔ)法
mysqli_num_fields(result);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識(shí)符。 |
技術(shù)細(xì)節(jié)
返回值: | 返回結(jié)果集中字段的數(shù)量。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 變量
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)據(jù)類型
- PHP 魔術(shù)常量
- PHP array() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP asort() 函數(shù)
- PHP list() 函數(shù)
- PHP rsort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)