Browsing index pages (2 articles)
↧
Parsing Atom Feed in PHP
I've written the following PHP to parse RSS and Atom feeds. This approach differs from others I've seen in that it simply checks a couple of places in the parsed XML for the item array.function...
View ArticleAnswer by Evil_skunk for Parsing Atom Feed in PHP
As you already noticed, RSS and Atom are 2 different standards. They both use XML but the differ in their structure.simplexml_load_file in php is quite easy to use and you can check for specific parts...
View Article
Browsing index pages (2 articles)