Is the following code PHP:
<?php
function a() {
b();
}
function b() {
c();
}
function c(){
debug_print_backtrace();
}
function d() {
echo "I am a function d(). Where on the list is my call?\n";
}
d();
a();
?>
The above example will output something similar to:
I am a function d(). Where on the list is my call?
#0 c() called at [D:\tests.php:18]
#1 b() called at [D:\tests.php:14]
#2 a() called at [D:\tests.php:31]
Is there a way to get the full call trace, not only call stack trace?