miax / crssfeed
PHP class for implementing a RSS feed
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/miax/crssfeed
Requires
- php: >=5.6
This package is not auto-updated.
Last update: 2025-12-24 17:39:34 UTC
README
CRSSFeed
PHP module class to get content of one or more RSS feeds. This repository also contains SimplePie.
Installation
To implement crssfeed on your site, get a copy of this repository using git clone or download it to your desktop.
Make sure you have a path for the cache available at the defined location, if you do not want the feed to download new information on each request. Using a cache is better for your system performance. You can adjust this path in the module file, CRSSFeed.php.
Initialize a new instance of the module, sending in a adress to a RSS-feed to the constructor, and a duration for the cache if you like.
Next, echo the method getFeed() on the object to display the feed.
Example:
$feed = new CRSSFeed(
[
"http://addresstofeed.com/rss",
"http://addresstoanotherfeed.com/rss"
]
);
echo $feed->getFeed();
Licence
This software is free software and carries a MIT license. Any included external modules are subject to their own licensing.
History
v0.1.0 (first version)
Base functionality.
Copyright (c) Mia Raunegger, 2015, mia@design4u2.se