Exception::getMessage

(PHP 5, PHP 7, PHP 8)

Exception::getMessage获取异常消息

描述

final public Exception::getMessage(): string

返回异常消息。

参数

此函数没有参数。

返回值

返回异常消息作为字符串。

示例

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

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

上面的示例将输出类似以下内容

Some error message

参见

添加备注

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top