PHP利用微信跳转的Code参数获取用户的openid

前端之家收集整理的这篇文章主要介绍了PHP利用微信跳转的Code参数获取用户的openid前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//获取微信登录用户信息
function getOpenID($appid,$appsecret,$code){
 
  $url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appid."&secret=".
             $appsecret."&code=".$code."&grant_type=authorization_code";
     $weixin=file_get_contents($url);//通过code换取网页授权access_token
        $jsondecode=json_decode($weixin); //对JSON格式的字符串进行编码
        $array = get_object_vars($jsondecode);//转换成数组
        $openid = $array['openid'];//输出openid
        return $openid;
      }

原文链接:/php/997487.html

猜你在找的PHP相关文章