Exception::__toString
(PHP 5 >= 5.1.0)
Exception::__toString — String representation of the exception
Descrizione
public string Exception::__toString
( void
)
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}
There are no user contributed notes for this page.
