mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
Update FansService.php
This commit is contained in:
parent
7f3cae056e
commit
d2aa8d0817
@ -54,13 +54,9 @@ class FansService extends Service
|
|||||||
* 获取粉丝信息
|
* 获取粉丝信息
|
||||||
* @param string $openid
|
* @param string $openid
|
||||||
* @return array
|
* @return array
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
|
||||||
*/
|
*/
|
||||||
public function get(string $openid): array
|
public function get(string $openid): array
|
||||||
{
|
{
|
||||||
$user = WechatFans::mk()->where(['openid' => $openid])->find();
|
return WechatFans::mk()->where(['openid' => $openid])->findOrEmpty()->toArray();
|
||||||
return empty($user) ? [] : $user->toArray();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user