我已经尝试了很多东西来获取有意义的数据,但似乎我在获取数组函数之后无法获得数组。
$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令人费解。