獲取錯誤程式碼

Error::getCode

(PHP 7, PHP 8)

Error::getCode獲取錯誤程式碼

說明

final public Error::getCode(): int

返回錯誤程式碼。

參數

此函式沒有參數。

返回值

返回 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

參見

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *