Exception::__toString

(PHP 5, PHP 7, PHP 8)

Exception::__toStringString representation of the exception

Descrierea

public Exception::__toString ( ) : string

Returns the string representation of the exception.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the string representation of the exception.

Exemple

Example #1 Exception::__toString() example

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

Exemplul de mai sus va afișa ceva similar cu:

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

A se vedea și

add a note add a note

User Contributed Notes

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