mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改粉丝数据
This commit is contained in:
parent
b95396cf6b
commit
cb4f860d2f
@ -79,17 +79,16 @@ class Fans extends Command
|
|||||||
while (is_string($next)) {
|
while (is_string($next)) {
|
||||||
$result = WechatService::WeChatUser()->getUserList($next);
|
$result = WechatService::WeChatUser()->getUserList($next);
|
||||||
if (is_array($result) && !empty($result['data']['openid'])) {
|
if (is_array($result) && !empty($result['data']['openid'])) {
|
||||||
$total = intval($result['total']);
|
|
||||||
foreach (array_chunk($result['data']['openid'], 100) as $openids) {
|
foreach (array_chunk($result['data']['openid'], 100) as $openids) {
|
||||||
$list = WechatService::WeChatUser()->getBatchUserInfo($openids);
|
$info = WechatService::WeChatUser()->getBatchUserInfo($openids);
|
||||||
if (is_array($list) && !empty($list['user_info_list'])) {
|
if (is_array($info) && !empty($info['user_info_list'])) {
|
||||||
foreach ($list['user_info_list'] as $user) {
|
foreach ($info['user_info_list'] as $user) {
|
||||||
$this->queue->message($total, ++$done, "-> {$user['openid']} {$user['nickname']}");
|
$this->queue->message($result['total'], ++$done, "-> {$user['openid']} {$user['nickname']}");
|
||||||
FansService::instance()->set($user, $appid);
|
FansService::instance()->set($user, $appid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$next = $total > $done ? $result['next_openid'] : null;
|
$next = $result['total'] > $done ? $result['next_openid'] : null;
|
||||||
} else {
|
} else {
|
||||||
$next = null;
|
$next = null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user