Error
PHP Manual

Error::__toString

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

Error::__toStringString representation of the error

Description

public string Error::__toString ( void )

Returns the string representation of the error.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Returns the string representation of the error.

Exemples

Exemple #1 Error::__toString() example

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

L'exemple ci-dessus va afficher quelque chose de similaire à :

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

Voir aussi


Error
PHP Manual