PHP 长度 / mysqli_fetch_lengths() 函数
示例 - 面向对象风格
返回结果集当前行字段的长度
<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");
if ($mysqli -> connect_errno) {
echo "无法连接到 MySQL: " . $mysqli -> connect_error;
exit();
}
$sql = "SELECT * FROM Persons ORDER BY Lastname";
if ($result = $mysqli -> query($sql)) {
$row = $result -> fetch_row();
// 显示字段长度
foreach ($result -> lengths as $i => $val) {
printf("字段 %2d 的长度: %2d\n", $i + 1, $val);
}
$result -> free_result();
}
$mysqli -> close();
?>
查看底部过程式风格的示例。
定义和用法
lengths / mysqli_fetch_lengths() 函数返回结果集当前行字段的长度。
语法
面向对象风格
$mysqli_result -> lengths
过程式风格
mysqli_fetch_lengths(result)
参数值
参数 | 描述 |
---|---|
result | 必填。指定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识符。 |
技术细节
返回值 | 返回一个整数数组,表示每个字段(列)的大小。如果发生错误,则返回 FALSE。 |
---|---|
PHP 版本 | 5+ |
示例 - 过程式风格
返回结果集当前行字段的长度
<?php
$con = mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno()) {
echo "无法连接到 MySQL: " . mysqli_connect_error();
exit();
}
$sql = "SELECT * FROM Persons ORDER BY Lastname";
if ($result = mysqli_query($con, $sql)) {
$row = mysqli_fetch_row($result);
// 显示字段长度
foreach (mysqli_fetch_lengths($result) as $i => $val) {
printf("字段 %2d 长度为: %2d\n", $i+1, $val);
}
mysqli_free_result($result);
}
mysqli_close($con);
?>
❮ PHP MySQLi 参考