From 853843f65c4f7fd30be4aa230bc416b44a75fb43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E7=8B=BC?= <2468023037@qq.com> Date: Sun, 23 Feb 2025 15:39:32 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- process/Task3.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/process/Task3.php b/process/Task3.php index 453a9ae..797899b 100644 --- a/process/Task3.php +++ b/process/Task3.php @@ -47,10 +47,10 @@ class Task3 // echo date('Y-m-d H:i:s')."\n"; // }); // // 每5秒执行一次 - new Crontab('0 */5 * * * *', function () { + new Crontab('0 0 * * * *', function () { //获取在线时间超过6小时的用户 $today = date('Y-m-d'); - $UserPhone = UserPhone::where('score', '>=', 120)->where('score', '<',140)->get(); + $UserPhone = UserPhone::where('day_score', '>=', 120)->where('day_score', '<',140)->get(); //判断用户绑定Whatsapp首次登录 foreach ($UserPhone as $key => $value) { $user_id = $value->user_id; @@ -72,7 +72,7 @@ class Task3 // ActiveUsers.c $activeUsers = ActiveUsers::create([ 'user_id' => $parent->id, - 'phome' => $UserPhone->phone, + 'phonne' => $UserPhone->phone, 'income' => $UserPhone->day_score, ]);