PHP mysql_fetch_lengths() 函数
定义和用法
mysql_fetch_lengths() 函数取得一行中每个字段的内容的长度。
行是由这些函数返回的:mysql_fetch_array()、mysql_fetch_assoc()、mysql_fetch_object() 或 mysql_fetch_row()。
若成功,则该函数返回一个数字数组,若出错或没有其他的行,则返回 false。
语法
mysql_fetch_lengths(data)
参数 | 描述 |
---|---|
data | 必需。要使用的数据指针。该数据指针是从 mysql_query() 返回的结果。 |
例子
<?php
$con = mysql_connect("localhost", "peter", "abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db("test_db",$con);
$sql = "SELECT * from Person WHERE Lastname='Refsnes'";
$result = mysql_query($sql,$con);
print_r(mysql_fetch_row($result));
print_r(mysql_fetch_lengths($result)
);
mysql_close($con);
?>
输出:
Array ( [0] => Adams [1] => John [2] => London ) Array ( [0] => 5 [1] => 4 [2] => 6 )