debug_backtrace()函数产生一条回溯跟踪(backtrace)
array debug_backtrace ( void );
它返回一个关联数组。可能返回的元素如下:
名称 | 类型 | 描述 |
---|---|---|
function | string | 当前的函数名。 |
line | integer | 当前的行号。 |
file | string | 当前的文件名。 |
class | string | 当前的类名。 |
object | object | 当前对象。 |
type | string | 当前的调用类型,可能的调用:
|
args | array | 如果在函数中,列出函数参数。如果在被引用的文件中,列出被引用的文件名。 |
序号 | 参数及说明 |
---|---|
1 | void 无需参数 |
如说明中所述,它返回一个关联数组。
以下是debug_backtrace函数的用法-
<?php function printStr($str) { echo "Hi: $str"; var_dump(debug_backtrace()); } printStr('hello'); ?>测试看看‹/›
这将产生以下结果-
Hi: helloarray(1) { [0]=> array(4) { ["file"]=> string(36) "/var/www/nhooo/php/test.php" ["line"]=> int(8) ["function"]=> string(8) "printStr" ["args"]=> array(1) { [0]=> &string(6) "hello" } } }