💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` 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); } ```