Php/ref exception getmessage
来自菜鸟教程
引发异常,然后输出其消息:
<?php try { throw new Exception("An error occurred"); } catch(Exception $e) { echo $e->getMessage(); } ?>
The
getMessage()
方法返回导致引发异常的错误或行为的描述。
$exception->getMessage()
返回值: | 返回一个字符串 |
在我们的文章中阅读有关异常的更多信息 PHP例外章节
.