PHP 异常 getFile() 方法
实例
抛出异常并输出发生异常的文件的路径:
<?php
try {
throw new Exception("An error occurred");
}
catch(Exception $e) {
echo "Error in this file: " . $e->getFile();
}
?>
亲自试一试 »
定义和用法
getFile()
方法返回发生异常的文件的绝对路径。
语法
$exception->getFile()
技术细节
返回值: | Returns a string |
---|
相关页面
在我们的 PHP 异常章节中阅读有关异常的更多信息。
❮ PHP Exception 异常参考手册