DokuWiki

It's better when it's simple

User Tools

Site Tools


devel:simplepie

This is an old revision of the document!


SimplePie RSS Parser

DokuWiki uses the SimplePie library to parse RSS and Atom feeds.

Please refer to the excellent documentation on how to work with SimplePie. To use the library in DokuWiki access it through the FeedParser subclass of SimplePie. It offers the same functionality as the original library but is configured to use DokuWiki's own HTTPClient library.

Example

Here's a simple example to print feed item titles:

require_once(DOKU_INC.'inc/FeedParser.php');
 
$feed = new FeedParser('http://feedproxy.google.com/splitbrain');
echo '<ul>';
foreach ($feed->get_items() as $item){
    echo '<li>'.$item->get_title().'</li>';
}
echo '</ul>';
devel/simplepie.1423437778.txt.gz · Last modified: 2015-02-09 00:22 by 82.238.146.65

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki