ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` 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); } ```