作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Hi 有一个从 CSV 文件导入新用户的功能。如果用户的密码字段为空,我会得到一个Cartalyst\Sentry\Users\PasswordRequiredException
我正在 try catch 此异常并将消息存储到 session 变量,但我想在异常发生后继续导入其余用户。
目前我正在使用这个处理器:
App::error(function(Cartalyst\Sentry\Users\PasswordRequiredException $exception)
{
Session::push('import.errors', $exception->getMessage());
});
我使用 XDebug 确定处理程序已被触发 - 但执行也会在错误发生后停止。
如何继续在 CSV 中导入其余用户?
最佳答案
您需要捕获您的函数导入新用户的异常,然后您可以选择忽略它:
your_import_function($users_to_be_imported)
{
foreach ($users_to_be_imported as $user) {
try {
// Import user code here
} catch (Cartalyst\Sentry\Users\PasswordRequiredException $exception) {
// Log user that failed here
}
}
}
因为您正在捕获函数中的异常 - 它不应该“冒泡”到 App::error()
函数
关于php - 如何在 Laravel 中发生异常后继续执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28231865/
我是一名优秀的程序员,十分优秀!