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.
- Host: GitHub
- URL: https://github.com/thinkphp/rssparser
- Owner: thinkphp
- Created: 2010-09-20T09:25:45.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2016-04-22T20:36:52.000Z (almost 10 years ago)
- Last Synced: 2025-08-06T15:52:10.680Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 2.93 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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().'
';
}
?>