- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP mysqli_num_fields() 函数
返回结果集中字段(列)的数量:
<?php // 假定数据库用户名:root,密码:123456,数据库:zyiz $con=mysqli_connect("localhost","root","123456","zyiz"); 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 参考手册
关注微信小程序
扫描二维码
程序员编程王