Error::getCode
(PHP 7, PHP 8)
Error::getCode — エラーコードを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
エラーコードを int 型として返します
例
例1 Error::getCode() の例
<?php
try {
throw new Error("Some error message", 30);
} catch(Error $e) {
echo "The Error code is: " . $e->getCode();
}
?>
上の例の出力は、 たとえば以下のようになります。
The Error code is: 30
+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