Php/ref exception getfile
来自菜鸟教程
引发异常并输出发生异常的文件的路径:
<?php try { throw new Exception("An error occurred"); } catch(Exception $e) { echo "Error in this file: " . $e->getFile(); } ?>
The
getFile()
方法返回发生异常的文件的绝对路径。
$exception->getFile()
返回值: | 返回一个字符串 |
在我们的文章中阅读有关异常的更多信息 PHP例外章节
.