diff --git a/process/Task2.php b/process/Task2.php index dd08d40..e0b8ca4 100644 --- a/process/Task2.php +++ b/process/Task2.php @@ -18,7 +18,7 @@ class Task2 { // 每5秒执行一次 new Crontab('0 */1 * * * *', function () { - $phones = UserPhone::where('status' ,'!=', 2)->get(); + $phones = UserPhone::where('created_at', '<', \Carbon\Carbon::now()->subMinutes(10))->where('status','!=',2)->get(); $start_time = time(); foreach ($phones as $key => $value) {