Exception
PHP Manual

Exception::getCode

(PHP 5 >= 5.1.0)

Exception::getCodeGets the Exception code

Descrizione

final public mixed Exception::getCode ( void )

Returns the Exception code.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the exception code as integer in Exception but possibly as other type in Exception descendants (for example as string in PDOException).

Esempi

Example #1 Exception::getCode() example

<?php
try {
    throw new 
Exception("Some error message"30);
} catch(
Exception $e) {
    echo 
"The exception code is: " $e->getCode();
}
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

The exception code is: 30


Exception
PHP Manual