我知道有很多方法可以在 php 中读取 RSS,就像
$rss = simplexml_load_file('http://rss.cnn.com/rss/edition.rss');
var_dump($rss);
当我搜索提要分页并通过偏移限制它们时,就像任何分页示例一样,我发现不止一种方式,就像
- 使用 php 分页显示 rss 提要
- http://www.phpexpertsforum.com/display-rss-feeds-with-pagination-using-php-t2173.html
- http://bavotasan.com/2010/display-rss-feed-with-php/
在从 RSS 提供者获取所有提要后,它们都对提要进行分页
我的问题是
“有什么方法可以像twitter或facebook API那样以分页方式阅读 RSS 提要?”
非常感谢你的帮助