用法
void debug_print_backtrace ( void );
定义和用法
此函数打印 PHP 回溯。它打印函数调用、包含/需要的文件和 eval()ed 内容。
参数
Sr.No | 参数及说明 |
---|---|
1 |
void 不适用。 |
返回值
不返回任何值。
示例
下面是这个函数的用法~
<?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]
相关用法
- PHP debug_print_backtrace()用法及代码示例
- PHP debug_backtrace()用法及代码示例
- PHP debug_zval_dump()用法及代码示例
- PHP decbin()用法及代码示例
- PHP decoct()用法及代码示例
- PHP dechex()用法及代码示例
- PHP deg2rad()用法及代码示例
- PHP decoct( )用法及代码示例
- PHP define()用法及代码示例
- PHP decbin( )用法及代码示例
- PHP defined()用法及代码示例
- PHP dechex( )用法及代码示例
- PHP disk_total_space()用法及代码示例
- PHP disk_total_space( )用法及代码示例
- PHP dir()用法及代码示例
- PHP date_default_timezone_set()用法及代码示例
- PHP date_create_immutable()用法及代码示例
- PHP date_get_last_errors()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Function debug_print_backtrace()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。