PHP mysqli_field_count() 函數(shù)
PHP mysqli_field_count() 函數(shù)
假設(shè)我們有一個(gè) "websites" 表,其中有 5 個(gè)字段 20 行記錄。返回最近查詢的列數(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(); } mysqli_query($con,"SELECT * FROM websites"); // 獲取列數(shù) echo mysqli_field_count($con); mysqli_close($con); ?>
定義和用法
mysqli_field_count() 函數(shù)返回最近查詢的列數(shù)。
語(yǔ)法
mysqli_field_count(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細(xì)節(jié)
返回值: | 返回一個(gè)表示結(jié)果集中列數(shù)的整數(shù)。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 數(shù)組
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 魔術(shù)常量
- PHP $_GET 變量
- PHP $_POST 變量
- PHP Session
- PHP Secure E-mails
- PHP array_intersect_key() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP list() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP reset() 函數(shù)
- PHP rsort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)