在线文档教程
PHP

Exception::getTraceAsString

Exception::getTraceAsString

(PHP 5 >= 5.1.0, PHP 7)

Exception :: getTraceAsString - 以堆栈的形式获取堆栈跟踪

描述

final public string Exception::getTraceAsString ( void )

以字符串形式返回异常堆栈跟踪。

Parameters

该功能没有参数。

返回值

以字符串形式返回异常堆栈跟踪。

例子

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

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

上面的例子会输出类似于:

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

  • Throwable :: getTraceAsString() - 获取堆栈跟踪为一个字符串

← Exception::getTrace

Exception::__toString →