Using Fast Feed =============== Factory way ----------- FastFeed provide a Factory, to easy instanciate FastFeed. .. code-block:: php `_. Instance Monolog ^^^^^^^^^^^^^^^^ FastFeed needs a log system, that implements the `PSR-3 `_ to manage log. We recommend you use monolog .. code-block:: php pushHandler(new StreamHandler('path/to/your.log', Logger::WARNING)); Here you have the `monolog documentation `_. Put it together ^^^^^^^^^^^^^^^ Now you can create FastFeed instance. .. code-block:: php pushParser(new RSSParser()); If you want to know more about `parsers `_. Add feeds --------- FastFeed manage two concepts, the feeds represent a resource that have content that you want retrieve. The channels are a feed's group. .. code-block:: php addFeed('default', 'http://desarrolla2.com/feed'); Enjoy ----- You only need retrieve the information and use it as you want. .. code-block:: php fetch('default'); foreach ($items as $item) { echo '

' . $item->getName() . '

' . PHP_EOL; } Continue reading ---------------- :doc:`parsers`