Exception::__toString
Exception::__toString
(PHP 5 >= 5.1.0, PHP 7)
Exception:: __ toString - 异常的字符串表示
描述
public string Exception::__toString ( void )
返回异常的字符串表示形式。
参数
该功能没有参数。
返回值
返回异常的字符串表示形式。
例子
示例#1Exception::__toString()示例
<?php
try {
throw new Exception("Some error message"
} catch(Exception $e) {
echo $e;
}
?>
上面的例子会输出类似于:
exception 'Exception' with message 'Some error message' in /home/bjori/tmp/ex.php:3
Stack trace:
#0 {main}
- Throwable :: __ toString() - 获取抛出对象的字符串表示形式
← Exception::getTraceAsString
Exception::__clone →