Quantcast
Channel: Use SimpleXML to parse multiple RSS feeds - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by scoffey for Use SimpleXML to parse multiple RSS feeds

// Set the feed URLs here$feeds = array('http://www.example.org/feed1.rss','http://www.example.org/feed2.rss', // etc.);// Get all feed entries$entries = array();foreach ($feeds as $feed) { $xml =...

View Article



Answer by dqhendricks for Use SimpleXML to parse multiple RSS feeds

You put the item values into a multi-dimensional array, then sort using usort(), then print. Do you have more specific questions?

View Article

Use SimpleXML to parse multiple RSS feeds

How can I put multiple RSS feeds from SimpleXML into an array sorted by pubDate?Example:feed[0] = 'http://www.example.org/feed1.rss';feed[1] = 'http://www.thing.org/feed.rss';...feed[n] = '..';#Fetch...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images