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"; }