(PHP 5 >= 5.1.0, PHP 7, PHP 8)
ErrorException::getSeverity — 獲取異常的嚴(yán)重程度
返回異常的嚴(yán)重程度。
此函數(shù)沒(méi)有參數(shù)。
返回異常的嚴(yán)重級(jí)別。
示例 #1 ErrorException::getSeverity() 例子
<?php
try {
throw new ErrorException("Exception message", 0, E_USER_ERROR);
} catch(ErrorException $e) {
echo "This exception severity is: " . $e->getSeverity();
var_dump($e->getSeverity() === E_USER_ERROR);
}
?>
以上例程的輸出類似于:
This exception severity is: 256 bool(true)