(PHP 7, PHP 8)
错误::getTraceAsString — 将堆栈跟踪作为字符串获取
此函数没有参数。
将堆栈跟踪作为字符串返回。
示例 #1 错误::getTraceAsString() 示例
<?php
function test() {
throw new Error;
}
try {
test();
} catch(Error $e) {
echo $e->getTraceAsString();
}
?>
上面的示例将输出类似于
#0 /home/bjori/tmp/ex.php(7): test() #1 {main}