简体   繁体   中英

How to mix more than 10 RSS feeds?

I just want to mix around 10 rss feeds into one and then i want to filter the results as per my requirements.

I know we can use yahoo pipes like solution for this,but due to some reasons i do not want to use yahoo's facility so is their any open source solution which i can host on my server and mix feeds using it.

I am using PHP for development along with Javascript(jquery).

Can i do this using simplepie.

Yes, use SimplePie. set_feed_url() accepts an array, and will combine all of them for you automatically.

$feed = new SimplePie();
$feed->set_feed_url(array('your','urls','here'));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM