使用下面这个作为 JSON 响应的示例,我将从使用 PHP 的 API 获得
[
{
"profile_background_tile": true,
"listed_count": 82,
"status": {
"created_at": "Fri Apr 20 20:06:12 +0000 2012",
"place": null,
},
"default_profile": false,
"created_at": "Tue Oct 25 00:03:17 +0000 2011"
}
]
我会用这样的东西......
$obj = json_decode($json);
foreach($obj as $index => $user) {
echo $user->profile_background_tile;
echo $user->listed_count;
echo $user->status;
echo $user->default_profile;
echo $user->created_at;
}
现在我需要一些帮助的地方是在下面的 JSON 响应status
中,created_at
并且place
我不知道如何访问那些项目?