我有以下问题:
我想从this JSON中解码并回显特定信息。
我想要这个:
23 {5}
id : 595
name : Höchste persönliche 3-Spieler-Wertung
quantity : 2595
lastUpdated : 1546883909000
money : false
该对象的具体“数量:2595”。
目前,我是这样做的:
$decodestatics = json_decode($datastatics, true);
<?php echo $decodestatics['statistics']['subCategories'][9]['subCategories'][0]['statistics'][23]['id'];?>
但这不起作用。
我想失败肯定在这里:
['statistics']['subCategories'][9]['subCategories'][0]['statistics'][23]['id']
我还想知道,是否有可能从双重命名的数组(subCategories)中获取信息。
也许有把戏吗?
谢谢。