Exception::getCode

(PHP 5, PHP 7, PHP 8)

Exception::getCode例外コードを取得する

説明

final public Exception::getCode(): int

例外コードを返します。

パラメータ

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

戻り値

例外コードを整数値で返します。しかし、 Exception クラスを継承したクラスでは、違う型を返すこともあります (たとえば PDOException は文字列を返します)。

例1 Exception::getCode() の例

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

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

The exception code is: 30

参考

関連キーワード:  例外, コード, 取得, Exception, getCode, クラス, パラメータ, final, public, int