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