From 5fdc20c4a4ed3276a780ab9c51bed733abff6929 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 29 Oct 2019 17:14:09 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=AD=A3=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E7=94=A8=E6=88=B7=E8=B5=84=E6=96=99=E4=B8=8D=E8=83=BD?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E8=AF=AD=E8=A8=80=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeChat/User.php b/WeChat/User.php index c362ccd..2156cf7 100644 --- a/WeChat/User.php +++ b/WeChat/User.php @@ -49,7 +49,7 @@ class User extends BasicWeChat */ public function getUserInfo($openid, $lang = 'zh_CN') { - $url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid={$openid}&lang=zh_CN"; + $url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=ACCESS_TOKEN&openid={$openid}&lang={$lang}"; $this->registerApi($url, __FUNCTION__, func_get_args()); return $this->httpGetForJson($url); }