mysqli_num_rows()结果不正确

时间:2014-08-26 22:01:59

标签: php mysql

我有一个空的MySQL宠物桌。当我使用以下PHP代码时,它提供一(1)。

$query = "SELECT COUNT(*) FROM pets";
$result = mysqli_query($connect,$query);
$total=mysqli_num_rows($result);
echo $total;

1 个答案:

答案 0 :(得分:0)

结果是得到了结果的计数,没有num_rows 实际上你正在获得结果的特性......

object(mysqli_result)#2 (5) { ["current_field"]=> int(0) ["field_count"]=> int(1) ["lengths"]=> NULL ["num_rows"]=> int(1) ["type"]=> int(0) }