When did Google visit my blog profile page?
The following sample usage will show you how to query all GoogleBot hits on your weblog profile page 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 write test.xml
$tool = new ApacheLogAnalyzer2Feed('access.log', 'test.xml');
// check Googlebot Useragent with a regular expression pattern
$tool->addFilter('User-Agent', 'regexp:Googlebot');
// check Webpage Request with a regular expression pattern
$tool->addFilter('Request', 'regexp:/site/profile\.php');
// run
$tool->run();
A full