rss提供缩略图图像

时间:2016-03-23 13:16:29

标签: php rss rss-reader

我正在尝试在RSS Feed中显示图片,并希望得到帮助。

这是我的代码

<?php
function fetch_news(){
    $data = file_get_contents('http://feeds.bbci.co.uk/news/rss.xml');
    $data = simplexml_load_string($data);

    foreach ($data->channel->item as $item) {
    $media = $item->children('http://search.yahoo.com/mrss/');

          print_r($media->thumbnail[0]->attributes());

        }

}

?>

我得到了以下错误

  

致命错误:attributes()

中的非对象上调用成员函数C:\wamp\www\ourProject\inc\news_reader.php

0 个答案:

没有答案