gourab-nag-dev / php-error-parser
Parses Php Error Logs and returns them in a nice readable format.
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
pkg:composer/gourab-nag-dev/php-error-parser
Requires
- php: >=5.2.0
This package is not auto-updated.
Last update: 2025-10-09 04:42:24 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();