Php/docs/exception.getfile

来自菜鸟教程
跳转至:导航、​搜索

Exception::getFile

(PHP 5, PHP 7, PHP 8)

Exception::getFile创建异常时的程序文件名称


说明

final public Exception::getFile ( ) : string

获取创建异常的程序文件名称。


参数

此函数没有参数。


返回值

返回发生异常的程序文件名称。


范例

Example #1 Exception::getFile()示例

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

以上例程的输出类似于:


/home/bjori/tmp/ex.php

参见

  • Throwable::getFile()