Exception::getMessage

(PHP 5, PHP 7, PHP 8)

Exception::getMessage获取异常消息内容

说明

final public Exception::getMessage ( ) : string

返回异常消息内容。

参数

此函数没有参数。

返回值

返回字符串类型的异常消息内容。

范例

Example #1 Exception::getMessage()示例

<?php
try {
    throw new 
Exception("Some error message");
} catch(
Exception $e) {
    echo 
$e->getMessage();
}
?>

以上例程的输出类似于:

Some error message

参见

User Contributed Notes

There are no user contributed notes for this page.
PHP8中文手册 站长在线 整理 版权归PHP文档组所有