ErrorException
PHP Manual

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.

Примеры

Пример #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


ErrorException
PHP Manual