gourab-nag-dev/php-error-parser

There is no license information available for the latest version (dev-master) of this package.

Parses Php Error Logs and returns them in a nice readable format.

dev-master 2016-05-23 16:18 UTC

This package is not auto-updated.

Last update: 2024-09-11 23:18:48 UTC


README

A parser implemented on PHP. Parses PHP-Error Logs and returns them in a nice data structure.

Just a simple script to get you started:

<?php
/**
 * File Name: test_error_parser.php
 * Project: Error Parser
 */

require "src/Parser.php";

$parser = new error_parser("C:/xampp/php/logs/php_error_log");
echo $parser->returnXml();