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
Requires
- php: >=5.2.0
This package is not auto-updated.
Last update: 2025-01-16 00:48:27 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();