目录

PHP debug_print_backtrace() 函数

PHP 错误参考

示例

打印 PHP 回溯:

<?php
function a($txt) {
    b("Glenn");
}
function b($txt) {
    c("Cleveland");
}
function c($txt) {
    debug_print_backtrace();
}
a("Peter");
?>
亲自试一试 »

定义和用法

debug_print_backtrace() 函数打印 PHP 回溯。

此函数显示导致 debug_print_backtrace() 函数的代码中的数据。


语法

debug_print_backtrace( options, limit);

参数值

Parameter Description
options Optional. Specifies a bitmask for the following option: DEBUG_BACKTRACE_IGNORE_ARGS (Whether or not to omit the "args" index, and all the function/method arguments, to save memory)
limit Optional. Limits the number of stack frames printed. By default (limit=0) it prints all stack frames


技术细节

返回值: 没有任何
PHP 版本: 5.0+
PHP 变更日志: PHP 5.4:可选参数限制加入
PHP 5.3.6:可选参数选项加入

PHP 错误参考