version php Lines Total Downloads Scrutinizer
Show nice equivalent to debug_backtrace(), with caller, code preview etc.
Can be used in HTML, or with symfony/console.
composer require --dev steevanb/php-backtrace ^2.1
// configure how file paths will be shown // true : remove path prefix, based on DumpBacktrace.php path (assume it is in vendor/ dir) // false : do not remove anything in file paths // string : remove this prefix \DumpBacktrace::setRemovePathPrefix($remove);
// get backtrace dump as array \DebugBacktraceHtml::getBacktraces(); // get backtrace dump as HTML \DebugBacktraceHtml::getDump(); // write getDump() HTML with echo \DebugBacktraceHtml::dump(); // write getDump() HTML with echo, and exit \DebugBacktraceHtml::eDump();
// Write dump \DebugBacktraceConsole::dump(); // Write dump and exit \DebugBacktraceConsole::eDump();