(PHP 5, PHP 7, PHP 8)
Exception::getMessage — 獲取異常消息內(nèi)容
返回異常消息內(nèi)容。
此函數(shù)沒有參數(shù)。
返回字符串類型的異常消息內(nèi)容。
示例 #1 Exception::getMessage()示例
<?php
try {
throw new Exception("Some error message");
} catch(Exception $e) {
echo $e->getMessage();
}
?>
以上例程的輸出類似于:
Some error message