PHP mysqli_field_count() 函数
PHP mysqli_field_count() 函数
假设我们有一个 "websites" 表,其中有 5 个字段 20 行记录。返回最近查询的列数:
<?php // 假定数据库用户名:root,密码:123456,数据库:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); if (mysqli_connect_errno($con)) { echo "连接 MySQL 失败: " . mysqli_connect_error(); } mysqli_query($con,"SELECT * FROM websites"); // 获取列数 echo mysqli_field_count($con); mysqli_close($con); ?>
定义和用法
mysqli_field_count() 函数返回最近查询的列数。
语法
mysqli_field_count(connection);
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接。 |
技术细节
返回值: | 返回一个表示结果集中列数的整数。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 数组
- PHP 数组排序
- PHP While 循环
- PHP 魔术常量
- PHP $_GET 变量
- PHP $_POST 变量
- PHP Session
- PHP Secure E-mails
- PHP array_intersect_key() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_key_exists() 函数
- PHP array_pad() 函数
- PHP array_reduce() 函数
- PHP array_slice() 函数
- PHP list() 函数
- PHP natcasesort() 函数
- PHP reset() 函数
- PHP rsort() 函数
- PHP uksort() 函数
- PHP cURL 函数