An open API service indexing awesome lists of open source software.

https://github.com/thinkphp/rssparser

This is a simple PHP class to parse RSS feeds.
https://github.com/thinkphp/rssparser

Last synced: 4 months ago
JSON representation

This is a simple PHP class to parse RSS feeds.

Awesome Lists containing this project

README

          

RSSParser
=========

This is a simple PHP class to parse RSS feeds.

Usage
=====

load('http://feeds.feedburner.com/ajaxian');

foreach($rss->getItems() as $item) {

echo''.$item->getTitle().'
';
}
?>