debug_print_backtrace
PHP 5, PHP 7, PHP 8
debug_print_backtrace - Prints a backtrace
Manual
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 evaled stuff.
Parameters
- options
-
This parameter is a bitmask for the following options:
debug_print_backtrace options
DEBUG_BACKTRACE_IGNORE_ARGS Whether or not to omit the "args" index, and thus all the function/method arguments, to save memory. - limit
-
This parameter can be used to limit the number of stack frames printed. By default (limit=0) it prints all stack frames.
Return Values
No value is returned.