https://github.com/gemorroj/rss
rss parser
https://github.com/gemorroj/rss
rss rss-parser
Last synced: 3 months ago
JSON representation
rss parser
- Host: GitHub
- URL: https://github.com/gemorroj/rss
- Owner: Gemorroj
- License: lgpl-3.0
- Created: 2012-11-10T20:17:33.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T20:18:15.000Z (4 months ago)
- Last Synced: 2025-03-24T05:03:33.108Z (4 months ago)
- Topics: rss, rss-parser
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RSS
[](https://github.com/Gemorroj/Rss/actions?query=workflow%3A%22Continuous+Integration%22)
### Requirements:
- PHP >= 8.0.2
### Installation:
```bash
composer require gemorroj/rss
```Example:
```php
addItem(
'one item',
'http://example.com',
'some description',
new \DateTime('yesterday')
);echo $rss->saveXML(); // rss xml
// $rss->output(); // send rss to browser
```