(PHP 5, PHP 7)
debug_print_backtrace — Prints a backtrace
debug_print_backtrace ([ int $options = 0 [, int $limit = 0 ]] ) : void
debug_print_backtrace() prints a PHP backtrace. It prints the function calls, included/required files and eval()ed stuff.
options
As of 5.3.6, this parameter is a bitmask for the following options:
DEBUG_BACKTRACE_IGNORE_ARGS | Whether or not to omit the "args" index, and thus all the function/method arguments, to save memory. |
limit
As of 5.4.0, this parameter can be used to limit the number of stack frames printed. By default (limit
=0
) it prints all stack frames.
No value is returned.
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.debug-print-backtrace.php