(PHP 5, PHP 7, PHP 8)
Exception::getMessage — 获取异常消息
此函数没有参数。
返回异常消息作为字符串。
示例 #1 Exception::getMessage() 示例
<?php
try {
throw new Exception("Some error message");
} catch(Exception $e) {
echo $e->getMessage();
}
?>
上面的示例将输出类似以下内容
Some error message