Error
PHP Manual

Error::getCode

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

Error::getCodeGets the error code

説明

final public mixed Error::getCode ( void )

Returns the error code.

パラメータ

この関数にはパラメータはありません。

返り値

Returns the error code as integer

例1 Error::getCode() example

<?php
try {
    throw new 
Error("Some error message"30);
} catch(
Error $e) {
    echo 
"The Error code is: " $e->getCode();
}
?>

上の例の出力は、 たとえば以下のようになります。

The Error code is: 30

参考


Error
PHP Manual