Exception/tostring-Phpdoc专题

Exception::__toString

将异常对象转换为字符串

说明

public string Exception::__toString ( <span class="methodparam">void )

返回转换为字符串(string)类型的异常。

参数

此函数没有参数。

返回值

返回转换为字符串(string)类型的异常。

范例

示例 #1 Exception::__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

本站为非盈利网站,作品由网友提供上传,如无意中有侵犯您的版权,请联系删除