Error::getCode

(PHP 7, PHP 8)

Error::getCode獲取錯誤代碼

說明

final public Error::getCode(): int

返回錯誤代碼。

參數(shù)

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

返回值

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

參見