🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` public function text(){ $code= I('get.code');//用户的登录凭证code(使用wx.login({})可获取到)这个是前端传过来 $appid='小程序的appid'; $secret='密钥就是secret'; $url="https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js\_code=$code&grant\_type=authorization\_code"; $weixin=file\_get\_contents($url); $jsondecode=json\_decode($weixin); $array=get\_object\_vars($jsondecode); echo json\_encode($array); } ```