Error::getMessage

(PHP 7, PHP 8)

Error::getMessageGets the error message

Descrizione

final public Error::getMessage(): string

Returns the error message.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the error message as a string.

Esempi

Example #1 Error::getMessage() example

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

Some error message

Vedere anche:

add a note add a note

User Contributed Notes

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