Php/ref exception getmessage

来自菜鸟教程
跳转至:导航、​搜索

PHP异常getMessage()方法

❮PHP异常参考

引发异常,然后输出其消息:

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

定义和用法

The getMessage() 方法返回导致引发异常的错误或行为的描述。

句法

$exception->getMessage()

技术细节

返回值: 返回一个字符串

相关页面

在我们的文章中阅读有关异常的更多信息 PHP例外章节

.

❮PHP异常参考