6.0.0-git
2024-05-09

Diff for Doc/Dev/FeedPackage between 1 and 2

[[toc]]



+ Horde_Feed



++ Reading Feeds

http://cvs.horde.org/framework/Horde_Feed/docs/examples/read.php


<code type="php">

/* Get the New York Times headlines. */++ Posting new Atom entries

$uri = 'http://graphics8.nytimes.com/services/xml/rss/nyt/HomePage.xml';http://cvs.horde.org/framework/Horde_Feed/docs/examples/post.php

try {

    $feed = Horde_Feed::readUri($uri);

} catch (Exception $e) {++ Editing an Atom entry

    die('Fatal error: ' . $e->getMessage() . "\n");http://cvs.horde.org/framework/Horde_Feed/docs/examples/edit.php

}


++ Deleting Atom entries

/* 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";

}

</code>http://cvs.horde.org/framework/Horde_Feed/docs/examples/delete.php