(PHP 7, PHP 8)
Error::getTrace — 获取堆栈跟踪
此函数没有参数。
返回堆栈跟踪作为 array。
示例 #1 Error::getTrace() 示例
<?php
function test() {
throw new Error;
}
try {
test();
} catch(Error $e) {
var_dump($e->getTrace());
}
?>以上示例将输出类似于以下内容
array(1) {
[0]=>
array(4) {
["file"]=>
string(22) "/home/bjori/tmp/ex.php"
["line"]=>
int(7)
["function"]=>
string(4) "test"
["args"]=>
array(0) {
}
}
}