The debug_print_backtrace() function prints backtrace.
This function displays data generated by the debug_print_backtrace() function code.
debug_print_backtrace()
<?phpfunction one($str1, $str2) { two("Glenn", "Quagmire"); }function two($str1, $str2) { three("Cleveland", "Brown"); }function three($ str1, $str2) { debug_print_backtrace(); }one("Peter", "Griffin");?>
The output of the above code looks like this:
#0 three(Cleveland, Brown) called at [C:webfoldertest.php:8]#1 two(Glenn, Quagmire) called at [C:webfoldertest.php:4]#2 one(Peter, Griffin) called at [C :webfoldertest.php:15]