(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
Error::getTraceAsString — Gets the stack trace as a string
Returns the stack trace as a string.
この関数にはパラメータはありません。
Returns the stack trace as a string.
例1 Error::getTraceAsString() example
<?php
function test() {
throw new Error;
}
try {
test();
} catch(Error $e) {
echo $e->getTraceAsString();
}
?>
上の例の出力は、 たとえば以下のようになります。
#0 /home/bjori/tmp/ex.php(7): test() #1 {main}