Error::getTraceAsString

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

Error::getTraceAsStringGets the stack trace as a string

説明

final public Error::getTraceAsString ( void ) : 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}

参考