欢迎访问服务器技术网-www.fuwuqijishu.com

PHP mysqli_num_fields() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 65次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP mysqli_num_fields() 函数

PHP MySQLi 参考手册

返回结果集中字段(列)的数量:

<?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 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2202.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900