使用 true 选项,它工作正常。
对不起,谢谢你们。
==============================================
我用这段代码将 php 数组编码为 json
$rows = array();
if ($result = $mysqli->query($query)) {
while ($row = $result->fetch_assoc()) {
$rows[] = $row;
}
echo json_encode($rows);
/* free result set */
$result->free();
}
结束解码
$array = json_decode($server_output)
$server_output 是这样的
[{"userid":"96679","userinfor":"xxxxxxxxx","userlocation":"CA"}]
[{"userid":"153795","userinfor":"xxxxxxxxx","userlocation":"CA"}]
[{"userid":"131878","userinfor":"xxxxxxxxx","userlocation":"CA"}]
但是,$array 是 NULL :(
提前感谢,