PHP 中的 debug_print_backtrace() 函数显示回溯。它不返回值。
用法
debug_print_backtrace(options, limit)
参数
options- 以下给定选项的位掩码
- DEBUG_BACKTRACE_IGNORE_ARGS:是否省略"args"索引,以及所有函数/方法参数,以节省内存。
limit− 限制打印的堆栈帧数。
返回
debug_print_backtrace() 函数不返回值。
示例
以下是一个例子 -
<?php
function Test1() {
Test2();
}
function Test2() {
Test3();
}
function Test3() {
Test4();
}
function Test4() {
debug_print_backtrace();
}
Test1();
?>
输出
Hi:helloarray(1) { [0]=> array(4) { ["file"]=> string(30) "/home/cg/root/4127336/main.php" ["line"]=> int(7) ["function"]=> string(7) "display" ["args"]=> array(1) { [0]=> string(5) "hello" } } }
相关用法
- 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 date_parse()用法及代码示例
注:本文由纯净天空筛选整理自Ankith Reddy大神的英文原创作品 debug_print_backtrace() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。