update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the exception severity

ErrorException::getSeverity

(PHP 5 >= 5.1.0)

ErrorException::getSeverityGets the exception severity

설명

final public int ErrorException::getSeverity ( void )

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"075);
} catch(
ErrorException $e) {
    echo 
"This exception severity is: " $e->getSeverity();
}
?>

위 예제의 출력 예시:

This exception severity is: 75