Skip to content

edhelas/feedcleaner

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 

feedcleaner

A simple PHP library that clean RSS feeds to Atom 1.0

Load FeedCleaner

To load FeedCleaner in your project just include the library to your composer file

{
    "require": {
        "movim/feedcleaner": "dev-master"
    }
}

Use FeedCleaner

use FeedCleaner\Parser;

$parser = new Parser;   // We instanciate the parser
$parser->setXML($xml);  // We set the XML of the current feed
$parser->parse();       // We parse and clean it
$parser->generate();    // And finally we display it !

About

A simple PHP library that clean RSS feeds to Atom 1.0

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages