Exception::getFile

(PHP 5, PHP 7, PHP 8)

Exception::getFile創(chuàng)建異常時(shí)的程序文件名稱

說(shuō)明

final public Exception::getFile(): string

獲取創(chuàng)建異常的程序文件名稱。

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

返回發(fā)生異常的程序文件名稱。

范例

示例 #1 Exception::getFile()示例

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

以上例程的輸出類似于:

/home/bjori/tmp/ex.php

參見(jiàn)