PHP RSS Feed Read and List

PHP provides a simplexml_load_file() function for reading data from XML files. We have seen this function in the Simple XML Parser tutorial.

Using this function, we will read RSS feeds by passing the feed URL to this function. In this tutorial, we are parsing the RSS feed and splitting it into an object array.

By iterating this object array, we are getting the required property of each feed item to display.

View Demo

PHP Code for Reading and Listing XML Feeds

This shortcode is used to parse XML feed URLs to read and display data items.

php-rss-read

<?php
$rss_feed = simplexml_load_file("https://phppot.com/feed/");
if (! empty($rss_feed)) {
    $i = 0;
    foreach ($rss_feed->channel->item as $feed_item) {
        if ($i >= 10)
            break;
        ?>
<div>
	<a class="feed_title" href="<?php echo $feed_item->link; ?>"><?php echo $feed_item->title; ?></a>
</div>
<div><?php echo implode(' ', array_slice(explode(' ', $feed_item->description), 0, 14)) . "..."; ?></div>
<?php
        $i ++;
    }
}
?>

RSS Feed List HTML

This HTML table will display a list of RSS feed items by iterating the item array.

<table class=”rss-table”> <tbody> <tr> <th><strong>PhpPot RSS Feed</strong></th> </tr> <?php //Loop starts for iterating feed item array ?> <tr> <td valign=”top”> <div><a class=”feed_title” href=”<?php echo $feed_item->link; ?>”><?php echo $feed_item->title; ?></a></div> <div><?php echo implode(‘ ‘, array_slice(explode(‘ ‘, $feed_item->description), 0, 14)) . “…”; ?></div> </td> </tr> <?php // Loop ends ?> </tbody> </table>

View DemoDownload

Photo of Vincy, PHP developer
Written by Vincy Last updated: July 6, 2023
I'm a PHP developer with 20+ years of experience and a Master's degree in Computer Science. I build and improve production PHP systems for eCommerce, payments, webhooks, and integrations, including legacy upgrades (PHP 5/7 to PHP 8.x).

Leave a Reply

Your email address will not be published. Required fields are marked *

Explore topics
Need PHP help?