PHP mysqli_fetch_field_direct() 函数
PHP mysqli_fetch_field_direct() 函数
返回结果集中某个单一字段(列)的 meta-data,并输出字段名称、表格和最大长度:
<?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)) { // 获取字段 "name" 的信息 $fieldinfo=mysqli_fetch_field_direct($result,1); printf("字段名: %s",$fieldinfo->name); echo "<br>"; printf("数据表: %s",$fieldinfo->table); echo "<br>"; printf("最大长度: %d",$fieldinfo->max_length); // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
定义和用法
mysqli_fetch_field_direct() 函数从结果集中取得某个单一字段(列)的 meta-data,并作为对象返回。
语法
mysqli_fetch_field_direct(result,fieldnr);
参数 | 描述 |
---|---|
result | 必需。规定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识符。 |
fieldnr | 必需。规定字段号。必须介于 0 和 字段数-1 之间。 |
技术细节
返回值: | 返回包含字段定义信息的对象。如果没有可用信息则返回 FALSE。该对象有下列属性:
|
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP 安装
- PHP 数组
- PHP 数组排序
- PHP 魔术常量
- PHP Secure E-mails
- PHP 错误处理
- PHP array_column() 函数
- PHP array_combine() 函数
- PHP array_count_values() 函数
- PHP array_diff_assoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill_keys() 函数
- PHP asort() 函数
- PHP count() 函数
- PHP list() 函数
- PHP rsort() 函数
- PHP shuffle() 函数
- PHP sort() 函数
- PHP 5 Math 函数
- PHP 杂项 函数