Error::__toString

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

Error::__toStringString representation of the error

説明

public Error::__toString ( void ) : string

Returns the string representation of the error.

パラメータ

この関数にはパラメータはありません。

返り値

Returns the string representation of the error.

例1 Error::__toString() example

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

上の例の出力は、 たとえば以下のようになります。

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

参考