打印 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:可选参数选项加入 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!