(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
Error::__toString — 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}