From cb4f860d2f8a3a6d997eae7f55fac76a619afde9 Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 17 Dec 2020 18:19:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=B2=89=E4=B8=9D=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/command/Fans.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index 2083fff95..5f4aedf99 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -79,17 +79,16 @@ class Fans extends Command while (is_string($next)) { $result = WechatService::WeChatUser()->getUserList($next); if (is_array($result) && !empty($result['data']['openid'])) { - $total = intval($result['total']); foreach (array_chunk($result['data']['openid'], 100) as $openids) { - $list = WechatService::WeChatUser()->getBatchUserInfo($openids); - if (is_array($list) && !empty($list['user_info_list'])) { - foreach ($list['user_info_list'] as $user) { - $this->queue->message($total, ++$done, "-> {$user['openid']} {$user['nickname']}"); + $info = WechatService::WeChatUser()->getBatchUserInfo($openids); + if (is_array($info) && !empty($info['user_info_list'])) { + foreach ($info['user_info_list'] as $user) { + $this->queue->message($result['total'], ++$done, "-> {$user['openid']} {$user['nickname']}"); FansService::instance()->set($user, $appid); } } } - $next = $total > $done ? $result['next_openid'] : null; + $next = $result['total'] > $done ? $result['next_openid'] : null; } else { $next = null; }