Simple PHP library to parse Apache or Nginx error-log file entries for further usage.
Using Composer
$ composer require tm/error-log-parser
or manually add this to composer.json
{
    "require": {
        "tm/error-log-parser": "~1.1"
    }
}
Instantiate the class:
use TM\ErrorLogParser\Parser; 
$parser = new Parser(Parser::TYPE_APACHE) // or TYPE_NGINX;
And then parse the lines:
function getLines($file)
 {
    $f = fopen($file, 'r');
    if (!$f) throw new Exception();
    while ($line = fgets($f)) {
        yield $line;
    }
    fclose($f);
}
foreach (getLines('/var/log/apache2/error.log') as $line) {
    $entry = $parser->parse($line);
}
Where $entry hold all parsed data.
For Apache:
stdClass Object (
    [date] => "Tue Dec 29 08:14:45 2015"
    [type] => "warn"
    [client] => "193.158.15.243"
    [message] => "mod_fcgid: stderr: PHP Warning:  Division by zero in /var/www/kd/app.de/src/Calc.php on line 346, referer: https://www.app.de"
)
And for Nginx:
stdClass Object (
    [date] => "2011/06/10 13:30:10"
    [type] => "error"
    [message] => "*1 directory index of "/var/www/ssl/" is forbidden"
    [client] => "86.186.86.232"
    [server] => "hotelpublisher.com"
    [request] => "GET / HTTP/1.1"
    [host] => "hotelpublisher.com"
)
Otherwise you can use the FormlessParser for formless log files:
stdClass Object (
    [type] => "info"
    [message] => "23263#0: *1 directory index of "/var/www/ssl/" is forbidden, client: 86.186.86.232, server: hotelpublisher.com, request: "GET / HTTP/1.1", host: "hotelpublisher.com""
)
Please refer to CONTRIBUTING.md for information on how to contribute.