From 0a08d8bd6d2081c56078b42d50f58b645833b701 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 7 Mar 2025 19:40:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20Task2=20=E7=B1=BB?= =?UTF-8?q?=E7=9A=84=E7=94=A8=E6=88=B7=E6=89=8B=E6=9C=BA=E5=8F=B7=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E6=9D=A1=E4=BB=B6=EF=BC=8C=E5=A2=9E=E5=8A=A0=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E9=99=90=E5=88=B6=E4=BB=A5=E4=BC=98=E5=8C=96=E6=80=A7?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- process/Task2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {