作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我执行了一条try catch语句,在该语句中我需要代码来执行某些操作,如果失败,则捕获错误,将其记录到laravel日志文件中,然后继续循环。我的代码是:
foreach ($logins as $login) {
try {
// Do something here
} catch (Exception $e) {
// Log errors
\Log::error( $e->getMessage() );
continue;
}
}
[Symfony\Component\Debug\Exception\FatalErrorException]
Namespace declaration statement has to be the very first statement in the script
use Log;
,但仍然出现此错误。
最佳答案
在其中一个脚本中,有一个类似于以下内容的 namespace 声明:
namespace projects\name;
\Log::error(...)
\
表示您正在访问全局PHP namespace 中的类。如果
Log
类位于特定的 namespace 中,例如
projects\name
,则可以通过以下两种方式之一使用该类。使用标准名称:
\projects\name\Log::error(...)
use
语句。
use projects\name\Log; //early in the file. No need for leading \
...
Log::error(...)
关于php - 如何在try/catch语句laravel中记录错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38548029/
我是一名优秀的程序员,十分优秀!