Rumah > Artikel > pembangunan bahagian belakang > php mysqli_fetch_lengths函数怎么用
php mysqli_fetch_lengths()函数返回结果集中的字段长度。语法为mysqli_fetch_lengths(result);若成功,则该函数返回一个数字数组,若出错或没有其他的行,则返回 false。
php mysqli_fetch_lengths()函数怎么用?
mysqli_fetch_lengths()函数返回结果集中的字段长度。
语法:
mysqli_fetch_lengths(result);
参数
result:必需。规定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识符。
返回值:若成功,则该函数返回一个数字数组,若出错或没有其他的行,则返回 false。
php mysqli_fetch_lengths()函数 示例
返回结果集中的字段长度:
<?php // 假定数据库用户名:root,密码:123456,数据库:data $con=mysqli_connect("localhost","root","123456","data"); 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); ?>
Atas ialah kandungan terperinci php mysqli_fetch_lengths函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!