我想问,我有一个 div,我想放置来自 BBC 或 CNN 的 RSS 提要。现在可以了,但是我想对进来的提要进行分页,一次显示 5 个,而其他的则显示单击链接的时间。
我现在开始编写代码,但我希望我能得到灵感或有一个我可以从中收集到的例子。
我想问,我有一个 div,我想放置来自 BBC 或 CNN 的 RSS 提要。现在可以了,但是我想对进来的提要进行分页,一次显示 5 个,而其他的则显示单击链接的时间。
我现在开始编写代码,但我希望我能得到灵感或有一个我可以从中收集到的例子。
看看SimplePie RSS 类和 CodeIgniter,也看看SimplePie Plugins and Integration和SimplePie CodeIgniter Library,多学习,自学。
我使用了 Haughin 的 Simple CodeIgniter Library。使用起来非常简单。
$this->load->library('simplepie');
$this->simplepie->set_feed_url('http://feeds.haughin.com/haughin');
$this->simplepie->set_cache_location(APPPATH.'cache/rss');
$this->simplepie->init();
$this->simplepie->handle_content_type();
$data['rss_items'] = $this->simplepie->get_items();
echo "<li>";
foreach($rss_items as $item) {
echo "<li>";
echo "<a href='" .$item->get_link() . "'>";
echo $item->get_title();
echo "</a>";
echo "</li>";
}
echo "</li>";
你可以在这里查看代码。