When did an user register into my website?
The following sample usage will show you how to query registration logs and convert them into an RSS feed with this class.
PHP Source Code
<?php
/**
* @see ApacheLogAnalyzer2Feed
*/
require_once 'ApacheLogAnalyzer2Feed.php';
// create an instance, parse access.log and print output to screen
$tool = new ApacheLogAnalyzer2Feed('access.log');
// check Webpage Request with a regular expression pattern
$tool->addFilter('Request', 'regexp:/site/register\-confirm\.php');
// run
$tool->run();
A full