diff --git a/process/Task.php b/process/Task.php index 689ac0e..c1858b5 100644 --- a/process/Task.php +++ b/process/Task.php @@ -7,6 +7,7 @@ use app\model\UserPhone; use app\dao\UserRewardDao; use Workerman\Crontab\Crontab; use app\model\GetLodeLog; +use support\Log; /** * 查询用户是否在线类 @@ -15,46 +16,21 @@ class Task { public function onWorkerStart() { - - // // 每秒钟执行一次 - // new Crontab('*/1 * * * * *', function(){ - // echo date('Y-m-d H:i:s')."\n"; - // }); - - // // 每5秒执行一次 - // new Crontab('*/5 * * * * *', function(){ - // echo date('Y-m-d H:i:s')."\n"; - // }); - - // // 每分钟执行一次 - // new Crontab('0 */1 * * * *', function(){ - // echo date('Y-m-d H:i:s')."\n"; - // }); - - // // 每5分钟执行一次 - // new Crontab('0 */5 * * * *', function(){ - // echo date('Y-m-d H:i:s')."\n"; - // }); - - // // 每分钟的第一秒执行 - // new Crontab('1 * * * * *', function(){ - // echo date('Y-m-d H:i:s')."\n"; - // }); - - // // 每天的7点50执行,注意这里省略了秒位 - // new Crontab('50 7 * * *', function(){ - // echo date('Y-m-d H:i:s')."\n"; - // }); // 每1秒执行一次 收取验证码 new Crontab('*/1 * * * * *', function () { $GetLodeLog = GetLodeLog::where('status', 0)->get(); foreach ($GetLodeLog as $key => $value) { - $res = SendCode::get_code($value->phone); - // var_dump($res); - if ($res['status'] == 1 && $res['scanCode'] != null) { - $value->status = 1; - $value->code = $res['scanCode']; - $value->save(); + try { + $res = SendCode::get_code($value->phone); + // var_dump($res); + if ($res['status'] == 1 && $res['scanCode'] != null) { + $value->status = 1; + $value->code = $res['scanCode']; + $value->save(); + } + } catch (\Exception $e) { + // 记录错误日志,避免任务中断 + Log::error("Error processing phone {$value->phone}: " . $e->getMessage()); } } });