PHP 8.4.24 Released!

Exception::getMessage

(PHP 5, PHP 7, PHP 8)

Exception::getMessageRecupera il messaggio di Exception

Descrizione

final public function Exception::getMessage(): string

Restituisce il messaggio di Exception.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Restituisce il messaggio di Exception sotto forma di stringa.

Esempi

Example #1 Esempio di Exception::getMessage()

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

Il precedente esempio visualizzerà qualcosa simile a:

Some error message

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top