Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

TotalPHP.com:
How to Read an RSS Feed with PHP 5
Apr 22, 2009 @ 16:15:16

New on the TotalPHP blog today is this article talking about reading RSS feeds with PHP (more specifically with SimpleXML).

PHP 5's ability to read XML files is fantastically easy to use. In the past it was possible but it required quite a bit of long winded code to get any where. PHP 5's SimpleXmlElement function makes working with XML a breeze, and with much less code too!

They include a script as an example - five lines to completely parse and pull the title and link information out of the remote RSS file. The example creates a SimpleXML object using the feed's URL and makes each element inside accessible as an object (that can be looped through and properties can be checked on).

tagged: title link object example simplexml php5 read rss

Link:


Trending Topics: