|
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64 User : jackjohn ( 502) PHP Version : 5.3.17 Disable Function : NONE Directory : /usr/share/doc/cpanel-php54-Horde-Feed-2.0.1/examples/ |
Upload File : |
<?php
/**
* Example of reading feeds with Horde_Feed.
*
* @package Feed
*/
/* Get a Horde framework include_path set up. */
require 'Horde/Autoloader.php';
/* Get the New York Times headlines. */
$uri = 'http://graphics8.nytimes.com/services/xml/rss/nyt/HomePage.xml';
try {
$feed = Horde_Feed::readUri($uri);
} catch (Exception $e) {
die('An error occurred loading the feed: ' . $e->getMessage() . "\n");
}
/* You can iterate over the entries in the feed simply by
* iterating over the feed itself. */
foreach ($feed as $entry) {
echo "title: {$entry->title()}\n";
if ($entry->author->name()) {
echo "author: {$entry->author->name()}\n";
}
echo "description:\n{$entry->description()}\n\n";
}
/* The properties of the feed itself are available through
* regular member variable access: */
echo "feed title: {$feed->title()}\n";
if ($feed->author->name()) {
echo "feed author: $feed->author->name()\n";
}
foreach ($feed->link as $link) {
echo "link: {$link['href']}\n";
}