(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)
Error::getFile — Gets the file in which the error occurred
Get the name of the file the error occurred.
この関数にはパラメータはありません。
Returns the filename in which the error occurred.
例1 Error::getFile() example
<?php
try {
throw new Error;
} catch(Error $e) {
echo $e->getFile();
}
?>
上の例の出力は、 たとえば以下のようになります。
/home/bjori/tmp/ex.php