Error::__toString
(PHP 7, PHP 8)
Error::__toString — エラーの文字列表現
パラメータ
この関数にはパラメータはありません。
戻り値
エラーの string 型の表現を返します
例
例1 Error::__toString() の例
<?php
try {
throw new Error("Some error message");
} catch(Error $e) {
echo $e;
}
?>
上の例の出力は、 たとえば以下のようになります。
Error: Some error message in /home/bjori/tmp/ex.php:3 Stack trace: #0 {main}
+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