debug_backtrace() 函数生成回溯。它返回一个关联数组。可能的返回元素如下 -
名称 | 类型 | 描述 |
---|---|---|
function | string | 当前函数名称。 |
line | integer | 当前行号。 |
file | string | 当前文件名。 |
class | string | 当前类名。 |
object | string | 当前对象。 |
type | string | 当前调用类型。如果是方法调用,则返回 "->"。如果是静态方法调用,则返回 "::"。如果函数调用,则不返回任何内容。 |
arg | array | 如果在函数内部,则列出函数参数。如果在包含的文件中,则列出包含的文件名。 |
用法
debug_backtrace(options, limit)
参数
options- 以下给定选项的位掩码 -
- DEBUG_BACKTRACE_PROVIDE_OBJECT:是否填充"object"索引
- DEBUG_BACKTRACE_IGNORE_ARGS:是否省略"args"索引,以及所有函数/方法参数,以节省内存。
limit- 限制打印的堆栈帧数
返回
debug_backtrace() 函数返回一个关联数组。上面提到了可能的返回元素。
示例
以下是一个例子 -
<?php
function display($str) {
echo "Hi:$str";
var_dump(debug_backtrace());
}
display('hello');
?>
输出
以下是输出 -
Hi:helloarray(1) { [0]=> array(4) { ["file"]=> string(36) "/var/www/tutorialspoint/php/test.php" ["line"]=> int(8) ["function"]=> string(8) "printStr" ["args"]=> array(1) { [0]=> &string(6) "hello" } } }
相关用法
- PHP debug_print_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()用法及代码示例
注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 debug_backtrace() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。