Exception
PHP Manual

Exception::getMessage

(PHP 5 >= 5.1.0)

Exception::getMessageGets the Exception message

Descrizione

final public string Exception::getMessage ( void )

Returns the Exception message.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the Exception message as a string.

Esempi

Example #1 Exception::getMessage() example

<?php
try {
    throw new 
Exception("Some error message");
} catch(
Exception $e) {
    echo 
$e->getMessage();
}
?>

Il precedente esempio visualizzerĂ  qualcosa simile a:

Some error message


Exception
PHP Manual