Handling a Stack$trace = new BackTrace();
// ...
$trace->getScope();
$trace->levelDown();
$trace->getLine();
// there is others methods ... have fun! ExplainYou can create a beautiful stack trace this way: $trace = new BackTrace();
echo $trace->explain(); or BackTraceExplain::perform();
|
You should put a printscreen or a static html of the execution result of some simple example ;).