PHP mysqli_fetch_lengths() 函数
PHP mysqli_fetch_lengths() 函数
返回结果集中的字段长度:
<?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)) { $row=mysqli_fetch_row($result); // 显示字段长度 foreach (mysqli_fetch_lengths($result) as $i=>$val) { printf("字段 %2d 长度为: %2d",$i+1,$val); echo "<br>"; } // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
定义和用法
mysqli_fetch_lengths() 函数返回结果集中的字段长度。
语法
mysqli_fetch_lengths(result);
参数 | 描述 |
---|---|
result | 必需。规定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识符。 |
技术细节
返回值: | 如果整数表示每个字段(列)的长度则返回数组,如果发生错误则返回 FALSE。 |
---|---|
PHP 版本: | 5+ |
PHP MySQLi 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 数据类型
- PHP 字符串
- PHP Cookie
- PHP 错误处理
- PHP JSON
- PHP array_flip() 函数
- PHP array_reverse() 函数
- PHP array_search() 函数
- PHP array_udiff_assoc() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_unique() 函数
- PHP array_unshift() 函数
- PHP current() 函数
- PHP shuffle() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP 5 Array 函数
- PHP Mail 函数
- PHP 杂项 函数