Error::__toString

(No version information available, might only be in Git)

Error::__toStringString representation of the error

Descrierea

public Error::__toString ( void ) : string

Returns the string representation of the error.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the string representation of the error.

Exemple

Example #1 Error::__toString() example

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

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

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

A se vedea și