Exception::getCode

(PHP 5, PHP 7, PHP 8)

Exception::getCode獲取異常代碼

說明

final public Exception::getCode(): int

返回異常代碼。

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

Exception 返回整型(int)的異常代碼,但在其他類中可能返回其他類型(比如在 PDOException 中返回 string)。

范例

示例 #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

參見