ErrorException
PHP Manual

ErrorException::getSeverity

(PHP 5 >= 5.1.0)

ErrorException::getSeverityGets the exception severity

Descrizione

final public int ErrorException::getSeverity ( void )

Returns the severity of the exception.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the severity level of the exception.

Esempi

Example #1 ErrorException::getSeverity() example

<?php
try {
    throw new 
ErrorException("Exception message"075);
} catch(
ErrorException $e) {
    echo 
"This exception severity is: " $e->getSeverity();
}
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

This exception severity is: 75


ErrorException
PHP Manual