我有最奇怪的行为,现在我正在努力工作几个小时。我通过AJAX向我的服务器发送一个大而复杂的JSON字符串,当我解码它时,我无法访问它的元素。但是当我继续将解码的JSON字符串保存到文件并再次打开它时,我突然能够使用它的元素。我无法解释这种行为。这是我的代码。
这不起作用
header('Access-Control-Allow-Origin: *');
$json = $_POST['json'];
$obj = json_decode($json, true);
// At this point I cannot work with the $obj elements
此作品
header('Access-Control-Allow-Origin: *');
$json = $_POST['json'];
$data = json_decode($json, true);
file_put_contents( 'test.txt', $data);
$file = file_get_contents('test.txt');
$obj = json_decode($file);
// At this point I can work with the $obj elements
请注意,我需要标题,因为我从不同的服务器获取JSON。
答案 0 :(得分:3)
看起来你的json是双重编码的,当你解码它两次时就可以了。尝试
$obj = json_decode(json_decode($json, true));
答案 1 :(得分:2)
:
$obj = json_decode($json, true);
true是转换为数组而不是对象