Exception::__toString

(PHP 5, PHP 7, PHP 8)

Exception::__toStringString representation of the exception

Descrizione

public Exception::__toString(): string

Returns the string representation of the exception.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns the string representation of the exception.

Esempi

Example #1 Exception::__toString() example

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

exception 'Exception' with message 'Some error message' in /home/bjori/tmp/ex.php:3
Stack trace:
#0 {main}

Vedere anche:

add a note add a note

User Contributed Notes

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