Home »  Index · Download · Documentation · Example Usage · License · Credits ·

Credits and 3rd party libraries

Apache Log Analyzer 2 Feed is not (yet?) the result of libraries only developed by me. This tool integrates some 3rd party open source PHP libraries to parse log files and create the feed.

FileIterator

The FileIterator class takes advantage of PHP5 Iterator() interface to enable you to very easily loop over each line of a file, without having to write the same code over and over again.

This PHP library is used by the tool to read log rows.

Apache Log Regex

Apache Log Regex, also known as Apache::LogRegex, is a PHP class that will parse Apache webserver access logs and return each lines component values in an associative array (hash). It’s ported from a CPAN module with own improvements.

More details are available at Hamish Brains's documentation page.

This PHP library is used by the tool to parse log rows.

Universal FeedCreator

Feedcreator is a class that provides an easy way to create RSS feeds from within PHP.
Currently Feedcreator can create various feed format including RSS 2.0 and Atom 1.0.

This PHP library is used by the tool to generate output RSS feed.