gpt4 book ai didi

php - 如何在 Laravel 中发生异常后继续执行?

转载 作者:行者123 更新时间:2023-12-04 16:49:15 25 4
gpt4 key购买 nike

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com