PHP debug_print_backtrace()函数
语法
void debug_print_backtrace ( void );
定义和用法
此函数打印出PHP的回溯。它打印出函数调用,包含/需要的文件和eval()的内容。
参数
Sr.No | Parameter & Description |
---|---|
1 | void NA. |
返回值
没有返回值。
示例
下面是使用该函数的示例:
<?php
function one() {
two();
}
function two() {
three();
}
function three(){
debug_print_backtrace();
}
one();
?>
这将产生以下结果−
#0 three() called at [/var/www/tutorialspoint/php/test.php:7]
#1 two() called at [/var/www/tutorialspoint/php/test.php:3]
#2 one() called at [/var/www/tutorialspoint/php/test.php:13]