up vote 26 down vote favorite
13
share [g+] share [fb]

I'm currently using Magpie RSS but it sometimes falls over when the RSS or Atom feed isn't well formed. Are there any other options for parsing RSS and Atom feeds with PHP?

link|improve this question
+1 this thread helps with a PHP project I have. – Talvi Watia Jul 26 '10 at 22:43
feedback

7 Answers

up vote 14 down vote accepted

Your other options include:

link|improve this answer
7  
wrong wrong wrong wrong! coreylib.com. Now. – Kenneth Reitz Aug 28 '09 at 22:37
1  
Zend Feed framework.zend.com/manual/en/zend.feed.html – artur Feb 26 '10 at 21:57
6  
I don't like such "answers", giving links without any comments. Looks like you google it and link to a few top results. Especially since the asker has some RSS experience and needs a better parser. – duality_ Jul 30 '11 at 13:49
feedback

I've always used the SimpleXML functions built in to PHP to parse XML documents. It's one of the few generic parsers out there that has an intuitive structure to it, which makes it extremely easy to build a meaningful class for something specific like an RSS feed. Additionally, it will detect XML warnings and errors, and upon finding any you could simply run the source through something like HTML Tidy (as ceejayoz mentioned) to clean it up and attempt it again.

Consider this very rough, simple class using SimpleXML:

<?php

class BlogPost
{
    var $date;
    var $ts;
    var $link;

    var $title;
    var $text;
}

class BlogFeed
{
    var $posts = array();

    function BlogFeed($file_or_url)
    {
        if(!eregi('^http:', $file_or_url))
            $feed_uri = $_SERVER['DOCUMENT_ROOT'] .'/shared/xml/'. $feed_or_url;
        else
            $feed_uri = $feed_or_url;

        $xml_source = file_get_contents($feed_uri);
        $x = simplexml_load_string($xml_source);

        if(count($x) == 0)
            return;

        foreach($x->channel->item as $item)
        {
            $post = new BlogPost();
            $post->date = (string) $item->pubDate;
            $post->ts = strtotime($item->pubDate);
            $post->link = (string) $item->link;
            $post->title = (string) $item->title;
            $post->text = (string) $item->description;

            // Create summary as a shortened body and remove images, extraneous line breaks, etc.
            $summary = $post->text;
            $summary = eregi_replace("<img[^>]*>", "", $summary);
            $summary = eregi_replace("^(<br[ ]?/>)*", "", $summary);
            $summary = eregi_replace("(<br[ ]?/>)*$", "", $summary);

            // Truncate summary line to 100 characters
            $max_len = 100;
            if(strlen($summary) > $max_len)
                $summary = substr($summary, 0, $max_len) . '...';

            $post->summary = $summary;

            $this->posts[] = $post;
        }
    }
}

?>
link|improve this answer
you have an end-tag with no start tag. ;) – Talvi Watia Jul 26 '10 at 22:45
17  
Well, I had one, but it was being eaten by SO's code formatter since it had no empty line above it. On a related note, you did not start your sentence with a capital letter. ;) – Brian Cline Jul 27 '10 at 3:51
Please change $feed_uri = $feed_or_url; to $feed_uri = $file_or_url; ... other than that, thank you for this code! It works great! – Tim Jan 18 at 19:02
feedback

If feed isn't well-formed XML, you're supposed to reject it, no exceptions. You're entitled to call feed creator a bozo.

Otherwise you're paving way to mess that HTML ended up in.

link|improve this answer
2  
+1, you should not try to work around any XML that is not well-formed. We've had bad experiences with them, trust me, it was big pain :( – Helen Neely Oct 10 '09 at 23:00
3  
However, programmers do not get to choose business partners and have to parse what they are given. – Edmond Meinfelder Jun 3 '11 at 0:21
feedback

The HTML Tidy library is able to fix some malformed XML files. Running your feeds through that before passing them on to the parser may help.

link|improve this answer
feedback

I use SimplePie to parse a Google Reader feed and it works pretty well and has a decent feature set.

Of course, I haven't tested it with non-well-formed RSS / Atom feeds so I don't know how it copes with those, I'm assuming Google's are fairly standards compliant! :)

link|improve this answer
feedback

Personally I use BNC Advanced Feed Parser- i like the template system that is very easy to use

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.