(PHP 5, PHP 7, PHP 8)
Exception::getFile — 創(chuàng)建異常時(shí)的程序文件名稱
獲取創(chuàng)建異常的程序文件名稱。
此函數(shù)沒(méi)有參數(shù)。
返回發(fā)生異常的程序文件名稱。
示例 #1 Exception::getFile()示例
<?php
try {
throw new Exception;
} catch(Exception $e) {
echo $e->getFile();
}
?>
以上例程的輸出類似于:
/home/bjori/tmp/ex.php