如果 JSON 字符串的名称中有空格"Some Items"
(有更准确的术语吗?),在使用它之后如何在 PHP 中访问json_decode($json_string)
它?从 API 返回的数据是否也需要此名称?
JSON字符串
{"Some Items":[{"post_id":"1284"},{"post_id":"1392"},{"post_id":"1349"}]}
这些不起作用
$data = json_decode($json_string);
$data = $data->"Some Items"; // invalid PHP
$data = $data["Some Items"]; // Cannot use object of type stdClass as array