0

我一直在尝试解析一个 json 数组,但没有成功。我可以得到一个根元素,但不能得到任何数组元素。下面是我的来自 Foursquare 的 json 数组的开头,它具有重复出现的场地元素。

     response: {
          keywords: {}
          suggestedRadius: 10000
          headerLocation: "here"
          headerFullLocation: "here"
          headerLocationGranularity: "unknown"
          headerMessage: "Suggestions for Friday evening"
          totalResults: 214
             groups: [
               {
                  type: "Recommended Places"
                  name: "recommended"
                  items: [
                      {
                       reasons: {
                       count: 0
                       items: [ ]
                        }
                       venue: {
                            id: "4b799a05f964a520b1042fe3"
                            name: "Green Gables"
                            contact: {
                            phone: "3097472496"
                            formattedPhone: "(309) 747-2496"
                                  }
                            location: {
                            address: "17485 East 2500 North Rd"

下面是我尝试获取餐厅名称的 PHP 代码。

        $uri = file_get_contents("https://api.foursquare.com/v2/venues/explore?ll=40.7,-89&oauth_token=xxxxxxxxx", true);
        $obj = json_decode($uri, true);

         foreach($obj['response']['groups']['items']['venue'] as $p)
       {']
           if(isset($p['name))  
           echo  $p['name'];
       }

当我执行此代码时,我收到一条错误消息,提示“索引无效:场地。如果我只使用 foreach($obj['response']['groups'] as $p) 我会得到结果。所以它与确定组下元素的名称有关。

好的。这是我最新的 PHP 代码。它深入到名称元素,然后给我一个错误,说“未定义的索引:名称”和“非法字符串偏移名称”。此消息出现 14 次,这是数组中每个项目的一次。那么为什么是“名称” 不承认?有什么想法。

    foreach($obj['response']['groups'] as $p)
   {
   if(isset($p['items']))
   {
     foreach($p['items'] as $p1)
 {
  if(isset($p1['venue']))
  {
//   echo varDumpToString($p1['venue']);  // this dump works ok and shows the elements
 foreach($p1['venue'] as $p2)
 {

     echo varDumpToString($p2['name']);   //  This is where I get the error
   }
   }
   }
   }   
   }
4

1 回答 1

1

因为您将 JSON 对象解析为 PHP 数组( 的第二个参数json_decode),但是,您正在访问结果,就好像它是一个对象一样。

使用数组下标访问元素 ( $obj['response']['groups']['items']['venue']),或解析为对象 (json_decode($uri, false)json_decode($uri))

于 2013-03-30T14:53:59.670 回答