RSS-PHP; RSS 0.92 Parser Test Results

RSS-PHP is a free RSS Parser for PHP 5+ - the full introduction is available on the main RSS-PHP Parser page.

RDF Site Summary 0.92 Test

This test uses the original gratefulDead sample RSS 0.92 file hosted at userland. As with all tests on rssphp.net, this a live test.

For more information on RSS 0.92 have a look at RSS 0.92 on backend.userland.

The RSS-PHP Test File

<?php
require_once '../../rss_php.php';

    $rss = new rss_php;
    $rss->load('http://static.userland.com/gems/backend/gratefulDead.xml');


    $descriptions $rss->getValuesByTagName('description'); #get all descriptions from the feed
    
foreach($descriptions as $index => $description) { #cycle descriptions and html encode them
        
$descriptions[$index] = htmlspecialchars($description);
    }
    print_r($descriptions); #print the rss descriptions
        
?>

RSS 0.92 Results

These results are generated using by including the above test file.

http_handler could not connect to static.userland.com:80 (PHP Error Number: 113, Message: No route to host)