哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

Exception::getTrace

(PHP 5, PHP 7, PHP 8)

Exception::getTrace获取异常追踪信息

说明

final public Exception::getTrace(): array

返回异常追踪信息。

参数

此函数没有参数。

返回值

返回包含异常追踪信息的数组(array)。

范例

示例 #1 Exception::getTrace()示例

<?php
function test() {
 throw new 
Exception;
}

try {
 
test();
} catch(
Exception $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) {
    }
  }
}

参见

打开 哈希空间 微信小程序中查看更佳