用PHP解析pinterest JSON api

时间:2012-10-15 05:06:12

标签: php json parsing pinterest

嗨,我有解决这个pinterest JSON文件的问题,任何想法?感谢


    $json = file_get_contents('http://pinterestapi.co.uk/jwmoz/boards');

    $obj = json_decode($json);
    foreach($obj->body as $item){
    $example = $item[0]->name;
    echo $example;
    }


    {
    "body":[
      {"name":"JMOZ",
      "href":"http:\/\/pinterest.com\/jwmoz\/jmoz\/",
      "num_of_pins":17,"cover_src":"http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920643849_2DcDfCUK_222.jpg",
      "thumbs_src":
          ["http:\/\/media-cache-ec5.pinterest.com\/upload\/82190761920643841_dZfvCWmE_t.jpg",
          "http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920194573_aPAbDtHD_t.jpg",
          "http:\/\/media-cache-ec2.pinterest.com\/upload\/82190761920194563_dQcOIHvQ_t.jpg",
          "http:\/\/media-cache0.pinterest.com\/upload\/82190761920194557_VSSI2uQB_t.jpg"
          ]
      },
      {"name":"JMOZ",
      "href":"http:\/\/pinterest.com\/jwmoz\/jmoz\/",
      "num_of_pins":17,"cover_src":"http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920643849_2DcDfCUK_222.jpg",
      "thumbs_src":
          ["http:\/\/media-cache-ec5.pinterest.com\/upload\/82190761920643841_dZfvCWmE_t.jpg",
          "http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920194573_aPAbDtHD_t.jpg",
          "http:\/\/media-cache-ec2.pinterest.com\/upload\/82190761920194563_dQcOIHvQ_t.jpg",
          "http:\/\/media-cache0.pinterest.com\/upload\/82190761920194557_VSSI2uQB_t.jpg"
          ]
      },     
      {"name":"JMOZ",
      "href":"http:\/\/pinterest.com\/jwmoz\/jmoz\/",
      "num_of_pins":17,"cover_src":"http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920643849_2DcDfCUK_222.jpg",
      "thumbs_src":
          ["http:\/\/media-cache-ec5.pinterest.com\/upload\/82190761920643841_dZfvCWmE_t.jpg",
          "http:\/\/media-cache-ec4.pinterest.com\/upload\/82190761920194573_aPAbDtHD_t.jpg",
          "http:\/\/media-cache-ec2.pinterest.com\/upload\/82190761920194563_dQcOIHvQ_t.jpg",
          "http:\/\/media-cache0.pinterest.com\/upload\/82190761920194557_VSSI2uQB_t.jpg"
          ]
      },
      {"name":"test I\u00f1t\u00ebrn\u00e2ti\u00f4n\u00e0liz\u00e6ti\u00f8n",
       "href":"http:\/\/pinterest.com\/jwmoz\/test-internationaliztin\/",
       "num_of_pins":0,
       "cover_src":false,
       "thumbs_src":false
       }],
      "meta":{"count":11}
      }

1 个答案:

答案 0 :(得分:0)

似乎问题在于您使用$ item

上的[0]索引
$example = $item[0]->name;

这应该只是

$example = $item->name;

要访问缩略图,请尝试

$obj = json_decode($json);
foreach($obj->body as $item){
  echo '<li>' . $item->name . '<ul>';
  if(!empty($item->thumbs_src))
  {
    foreach($item->thumbs_src as $thumbs_src){
      echo '<li>' . $thumbs_src . '</li>';
    }
  }
  echo '</ul></li>';
}