Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

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

7 Answers

up vote 25 down vote accepted

Your other options include:

share|improve this answer
2  
Zend Feed framework.zend.com/manual/en/zend.feed.html – artur Feb 26 '10 at 21:57
52  
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

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/'. $file_or_url;
        else
            $feed_uri = $file_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;
        }
    }
}

?>
share|improve this answer
1  
you have an end-tag with no start tag. ;) – Talvi Watia Jul 26 '10 at 22:45
56  
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
2  
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 '12 at 19:02
Whoops -- I've corrected it in both instances in this code. Thanks for the heads-up! – Brian Cline Feb 12 '12 at 5:46
1  
Note that while this solution is great, it'll only parse RSS feeds in it's current form. Atom feeds will not be parsed due to their different schema. – András Szepesházi Jul 20 '12 at 17:36

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.

share|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
15  
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

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.

share|improve this answer

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! :)

share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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