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.

Installs: 34

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

pkg:composer/gourab-nag-dev/php-error-parser

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

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();