啥也不说--,直接上货,喜欢的朋友可以点个赞;
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);
}