(PHP 5 >= 5.1.0)
ErrorException::getSeverity — Gets the exception severity
Returns the severity of the exception.
This function has no parameters.
Returns the severity level of the exception.
Пример #1 ErrorException::getSeverity() example
<?phptry { throw new ErrorException("Exception message", 0, 75);} catch(ErrorException $e) { echo "This exception severity is: " . $e->getSeverity();}?>
Результатом выполнения данного примера будет что-то подобное:
This exception severity is: 75