我正在使用Simplepie来解析不同的RSS提要,将它们传递给Smarty模板,我需要从每个项目行返回属性,在此示例中读取:NEWSX
<source url="http://whatever.url/"><![CDATA[NEWSX]]></source>
我发现get_item_tags方法将选择使用以下内容的行和属性:
$newssource = $item->get_item_tags('','source');
这是我的问题。使用以下代码时,我不知道如何将每个源附加到项目上(因此,基本上我可以每次显示不同的源元素以及通常的标题,链接,描述等):
$RSS = array();
foreach($items as $item){
$feed = $item->get_feed();
$tmp=array();
$newssource = $item->get_item_tags('','source');
echo $newssource[0]["data"];
if ($feed){
if ($enclosure = $item->get_enclosure()){
$tmp['title'] = $item->get_title();
$tmp['permalink'] = $item->get_permalink();
$tmp['thumbnail'] = $enclosure->get_thumbnail();
$tmp['description'] = $enclosure->get_description();
$tmp['image'] = $enclosure->get_link();
}
$tmp['date'] = $item->get_date('j M Y');
$tmp['content'] = $item->get_content();
$tmp['title'] = $item->get_title();
$tmp['link'] = $item->get_link();
$tmp['description'] = $item->get_description();
array_push($RSS, $tmp);
}
}
可以吗?提前感谢您的任何帮助或建议。
答案 0 :(得分:0)
所以这就是解决方案:
$RSS = array();
foreach($items as $item){
$feed = $item->get_feed();
$tmp=array();
if ($feed){
$tmp['date'] = $item->get_date('j M Y, g:i a');
$tmp['content'] = $item->get_content();
$tmp['title'] = $item->get_title();
$tmp['link'] = $item->get_link();
$tmp['description'] = $item->get_description();
$tmp['source'] = $item->get_item_tags('','source')[0]["data"];
array_push($RSS, $tmp);
}
}
$smarty->assign( $params['assign'], $RSS );
在聪明的模板中:
<div class="cont">
<a href="{$entry.link}" target="_new">{$entry.title}</a>
<br />
<span class="date">Published on: <strong>{$entry.date}</strong></span><br />
<span class="source">Via : <strong>{$entry.source}</strong></span><br />
</div>