PHP code example of pulse00 / monolog-parser
1. Go to this page and download the library: Download pulse00/monolog-parser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pulse00 / monolog-parser example snippets
use Dubture\Monolog\Reader\LogReader;
$logFile = '/path/to/some/monolog.log';
$reader = new LogReader($logFile);
foreach ($reader as $log) {
echo sprintf("The log entry was written at %s. \n", $log['date']->format('Y-m-d h:i:s'));
}
$lastLine = $reader[count($reader)-1];
echo sprintf("The last log entry was written at %s. \n", $lastLine['date']->format('Y-m-d h:i:s'));