Php/docs/exception.gettraceasstring

来自菜鸟教程
跳转至:导航、​搜索

Exception::getTraceAsString

(PHP 5, PHP 7, PHP 8)

Exception::getTraceAsString获取字符串类型的异常追踪信息


说明

final public Exception::getTraceAsString ( ) : string

以字符串类型返回异常追踪信息。


参数

此函数没有参数。


返回值

以字符串类型返回异常追踪信息。


范例

Example #1 Exception::getTraceAsString()示例

<?phpfunction test() {    throw new Exception;}try {    test();} catch(Exception $e) {    echo $e->getTraceAsString();}?>

以上例程的输出类似于:


#0 /home/bjori/tmp/ex.php(7): test()
#1 {main}

参见

  • Throwable::getTraceAsString()