PHP Conference Japan 2024

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