在使用php解析此json feed时遇到问题,只返回一个字符串而不是一个对象。需要返回每个项目的标题和网址字段。
function get_data($url) {
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$feed = json_decode(get_data('http://xxxx/?json=1&post_type=logos&count=5', TRUE));
var_dump($feed);
?>
<div class="content-box-right">
<h1>LOGO & GRAPHIC STANDARDS</h1>
<div class="content-sep"></div>
<?php foreach ($feed as $item) {
var_dump($item);?>
}
?>
</div>
答案 0 :(得分:3)
根据我在该URL上看到的JSON的结构,看起来如果您正在寻找posts
项,那么您需要访问如下:
<?php foreach ($feed->posts as $item) { ?>