如何使用PHP访问JSON数组

How to access JSON array with PHP

提问人:DrWatson 提问时间:4/20/2015 更新时间:4/20/2015 访问量:119

问:

我正在使用 Giantbomb API,它返回这样的结果;

{
error: "OK",
limit: 100,
offset: 0,
number_of_page_results: 24,
number_of_total_results: 24,
status_code: 1,
results: [ 
{
expected_release_day: 8,
expected_release_month: 5,
name: "Project CARS",
platforms: [
{
  api_detail_url: "http://www.giantbomb.com/api/platform/3045-94/",
  id: 94,
  name: "PC",
  site_detail_url: "http://www.giantbomb.com/pc/3045-94/",
  abbreviation: "PC"
  },
 ],
site_detail_url: "http://www.giantbomb.com/project-cars/3030-36993/"
},

我可以通过使用标准json_decode来访问最多信息,然后使用 for 循环遍历项目,但由于某种原因,我在访问返回的 platforms 数组时遇到了问题。我正在尝试获得这样的平台名称:

foreach($games['results'] as $item){
print $item['platforms']['name'];

但是这样做时我总是收到“未定义索引”错误。我在这里做错了什么?

php 数组 json undefined-index

评论

0赞 Darren 4/20/2015
foreach($games['results']['platforms'] as $item){ print $item['name']; }...?(或者按照 Ghost 的回答去做;-))
0赞 psiyumm 4/20/2015
在 PHP 中迭代复杂的关联数组的可能副本

答:

4赞 Kevin 4/20/2015 #1

里面还有另一个维度,需要再添加一个索引:platforms

foreach($games['results'] as $item) {
    if(isset($item['platforms'][0]['name'])) {
        echo $item['platforms'][0]['name'];
    }
}

旁注:上面的代码只是直接指向索引零。如果该深度中还有更多内容,则在其中添加另一个迭代:

foreach($games['results'] as $item) {
    foreach($item['platforms'] as $platform) {
        echo $platform['name'];
    }
}

评论

1赞 Darren 4/20/2015
打败我那么多;-D
0赞 DrWatson 4/20/2015
呸,早该知道这么简单。非常感谢!