Exception::getFile

(PHP 5, PHP 7, PHP 8)

Exception::getFile例外が作られたファイルを取得する

説明

final public Exception::getFile(): string

例外が作られたファイルの名前を取得します。

パラメータ

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

戻り値

例外が作られたファイルの名前を返します。

例1 Exception::getFile() の例

<?php
try {
    throw new 
Exception;
} catch(
Exception $e) {
    echo 
$e->getFile();
}
?>

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

/home/bjori/tmp/ex.php

参考

関連キーワード:  例外, 取得, Exception, ファイル, getFile, 名前, パラメータ, 出力, Throwable, 参考