我正在尝试访问解码的 json 结构,其中$encoded
包含来自 shopify API GET 的响应/admin/orders/450789469.json
(请参阅他们的文档)。
$decoded= json_decode($encoded_input, true);
var_dump($decoded);
$decoded 的转储显示解码的嵌套数组,但是当我尝试访问单个元素时,什么都没有显示。
echo $decoded->orders[0]->buyer_accepts_marketing;
谁能解释一下为什么解码后的 json 结构无法访问?谢谢