I know there are a lot of ways to read RSS in php just like
$rss = simplexml_load_file('http://rss.cnn.com/rss/edition.rss');
var_dump($rss);
and when I am searching for paginate the feeds and limit them by offset as any pagination example I found more than one way just like
- displaying rss feed with php pagination
- http://www.phpexpertsforum.com/display-rss-feeds-with-pagination-using-php-t2173.html
- http://bavotasan.com/2010/display-rss-feed-with-php/
all of them paginate the feeds after getting all of them form rss provider
my question is
"Is there any way to read the RSS feeds in paging way like twitter or facebook APIs?"
Thank you so much for your help