(PHP 5 >= 5.1.0)
ErrorException::getSeverity — Gets the exception severity
Returns the severity of the exception.
이 함수는 인수가 없습니다.
Returns the severity level of the exception.
Example #1 ErrorException::getSeverity() example
<?php
try {
throw new ErrorException("Exception message", 0, 75);
} catch(ErrorException $e) {
echo "This exception severity is: " . $e->getSeverity();
}
?>
위 예제의 출력 예시:
This exception severity is: 75