tags:

views:

22

answers:

1

I am trying to parse iTunes top movies (top songs, albums etc) RSS feed, using PHP. Is there a library that I can use to parse them, without writing too much XML code (or using simplexml)? I tried simplepie, but it gave me some inconsistent results, and it is no longer maintained.

+3  A: 

Here is a good overview: http://www.webresourcesdepot.com/php-rss-parsers/

m1tk4
thank you. Zend seems pretty good, other libraries don't seem to be maintained that actively. Do I need to download the entire zend framework to use the zend_feed library?
I believe you do - it's not too large though.
m1tk4