PHP mysqli_num_fields() 函数
PHP mysqli_num_fields() 函数
返回结果集中字段(列)的数量:
<?php // 假定数据库用户名:root,密码:123456,数据库: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)) { // 返回结果集中的字段数 $fieldcount=mysqli_num_fields($result); printf("结果集中有 %d 个字段。",$fieldcount); // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
定义和用法
mysqli_num_fields() 函数返回结果集中字段(列)的数量。
语法
mysqli_num_fields(result);
参数 | 描述 |
---|---|
result | 必需。规定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识符。 |
技术细节
返回值: | 返回结果集中字段的数量。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 变量
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP 魔术常量
- PHP array() 函数
- PHP array_diff() 函数
- PHP array_diff_uassoc() 函数
- PHP array_filter() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_intersect_ukey() 函数
- PHP array_reduce() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_walk() 函数
- PHP asort() 函数
- PHP list() 函数
- PHP rsort() 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数