xepozz / stacktrace-parser
There is no license information available for the latest version (1.0) of this package.
1.0
2021-07-05 19:10 UTC
Requires (Dev)
- phpunit/phpunit: ^9.5
README
Introduction
The stacktrace-parser
is a tool to parse string stacktrace to array like you
call getTrace() on a real exception object.
Installation
Just run in console:
composer req xepozz/stacktrace-parser --prefer-dist
Usage
use Xepozz\StacktraceParser\StacktraceParser; $parser = new StacktraceParser(); $stacktrace = $parser->parse(<<<TEXT Fatal error: Uncaught Exception in /in/hVvRE:5 Stack trace: #0 /in/hVvRE(11): A->__g() #1 {main} thrown in /in/hVvRE on line 5 TEXT ); print_r($stacktrace);
Will be outputted:
Array
(
[0] => Array
(
[file] => /in/hVvRE
[line] => 11
[class] => A
[type] => ->
[function] => __g
)
)
If you want to see more examples look into tests
folder
Restriction
As a lot of custom tools this tool has one restriction. It's absent args
property in trace item.
It's absent, because there is no way how to reproduce reduced value back to PHP-like value.
So parser even doesn't try to restore these values.