app->event->trigger('WechatFansUpdate', $user); return !!data_save('WechatFans', $user, 'openid'); } /** * 获取粉丝信息 * @param string $openid * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function get(string $openid): array { return $this->app->db->name('WechatFans')->where(['openid' => $openid])->find() ?: []; } }