尽管有查询结果,mysqli_fetch_array仍然没有数组

时间:2014-09-21 03:07:04

标签: php mysql sql

我已经尝试了很多东西来获取有意义的数据,但似乎我在获取数组函数之后无法获得数组。

$row = mysqli_fetch_array($result, MYSQL_ASSOC); //this does not create an array

echo("rows ".mysqli_num_rows($result)."<br/>"); //rows 1
echo("fields ".mysqli_num_fields($result)."<br/>"); //fields 3
echo($row."<br/>"); //
echo("size ".sizeOf($row)); //size 0

我从查询结果中获得了有意义的数据,但数组大小为0令人费解。

0 个答案:

没有答案