(PHP 7, PHP 8)
Error::getCode — 獲取錯誤代碼
返回錯誤代碼。
此函數(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