3

我有最奇怪的行为,我已经为此工作了几个小时。我通过 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。

4

2 回答 2

3

看起来您的 json 是双重编码的,也就是说,当您对其进行两次解码时,它就可以工作。尝试

$obj = json_decode(json_decode($json, true));
于 2013-03-06T18:23:27.063 回答
2

在您的第一次试用中,您使用了:

$obj = json_decode($json, true);

真正的是转换为数组而不是对象

于 2013-03-06T18:21:07.110 回答