$openid, 'appid' => sysconf('wechat_appid')]; $user = Db::name('WechatFans')->where($map)->find(); foreach (['country', 'province', 'city', 'nickname', 'remark'] as $k) { isset($user[$k]) && $user[$k] = ToolsService::emojiDecode($user[$k]); } return $user; } /** * 同步所有粉丝记录 * @param string $next_openid * @return bool * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\Exception * @throws \think\exception\PDOException */ public static function sync($next_openid = '') { $wechat = WechatService::user(); $result = $wechat->getUserList($next_openid); if (empty($result['data']['openid'])) { return false; } foreach (array_chunk($result['data']['openid'], 100) as $openids) { foreach ($wechat->getBatchUserInfo($openids)['user_info_list'] as $user) { if (false === self::set($user)) { return false; } if ($result['next_openid'] === $user['openid']) { unset($result['next_openid']); } } } return empty($result['next_openid']) ? true : self::sync($result['next_openid']); } /** * 同步获取黑名单信息 * @param string $next_openid * @return bool * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\Exception * @throws \think\exception\PDOException */ public static function syncBlack($next_openid = '') { $wechat = WechatService::user(); $result = $wechat->getBlackList($next_openid); foreach (array_chunk($result['data']['openid'], 100) as $openids) { $info = $wechat->getBatchUserInfo($openids); foreach ($info as $user) { $user['is_black'] = '1'; if (self::set($user) && $result['next_openid'] === $user['openid']) { unset($result['next_openid']); } } } return empty($result['next_openid']) ? true : self::syncBlack($result['next_openid']); } }