(PHP 7, PHP 8)
Error::getTraceAsString — 获取字符串形式的调用栈(stack trace)
以字符串形式返回 stack trace。
此函数没有参数。
以字符串形式返回 stack trace。
Example #1 Error::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}