Are there any free php/javascript libraries out there which would help in displaying an RSS feed as html?

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

In my Opinion Simplepie is one of the Best RSS parsers.

Here is an example:

require_once('simplepie.inc');
$feed = new SimplePie();
$feed->set_feed_url('http://simplepie.org/blog/feed/');
$feed->init();
$feed->handle_content_type();


    <?php foreach ($feed->get_items(0, 5) as $item): ?>

        <div class="item">
            <h2 class="title"><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a></h2>
            <?php echo $item->get_description(); ?>
            <p><small>Posted on <?php echo $item->get_date('j F Y | g:i a'); ?></small></p>
        </div>

    <?php endforeach; ?>
link|improve this answer
feedback

Maybe SimplePie might help, here -- quoting its FAQ, it's :

  • A code library, written in PHP, intended to make it ridiculously easy for people to manage RSS and Atom feeds.
  • An easy to use API that handles all of the dirty work when it comes to fetching, caching, parsing, normalizing data structures between RSS and Atom formats, handling character encoding translation, and sanitizing the resulting data.

Of couse, it will not do everything for you -- but it might help you get started.


Other solutions include, for instance, Zend_Feed_Reader or MagpieRSS.

link|improve this answer
1  
certainly a much cleaner approach than rss2html. +1 – Mef Jan 10 '10 at 15:01
feedback

Try Magpie RSS. It can parse RSS feeds to arrays which you can easily iterate through and build your HTML.

link|improve this answer
feedback

It's not actually a library either, but I would definitely recommand you to use XSL/XSLT.

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.