Open-Source PHP Framework - Designed for rapid development of performance-oriented scalable applications

RSS Reader

$rss get::component('rss');
$articles $rss->getFeed('https://www.engadget.com/rss.xml');
foreach (
$articles as $article) {
    echo 
$html->h2($html->link($article['link'], $article['title']));
    echo 
$html->p($article['description']);
}

Live RSS feed output: