Error::getMessage
(PHP 7, PHP 8)
Error::getMessage — エラーメッセージを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
エラーメッセージを文字列で返す。
例
例1 Error::getMessage() の例
<?php
try {
throw new Error("Some error message");
} catch(Error $e) {
echo $e->getMessage();
}
?>
上の例の出力は、 たとえば以下のようになります。
Some error message
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google