首页 > 后端开发 > php教程 > tp框架中的session 问题

tp框架中的session 问题

WBOY
发布: 2016-06-06 20:07:07
原创
972 人浏览过

在微信公众平台开发中 为什么在一个模块下的2个控制器中同一个session不能用

<code>//网页授权获取用户基本信息
    public function webUsers(){
        $token=session('token');
          $wechatAuth=new WechatAuth($this->appId,$this->appSecret,$token);
         //$wechatAuth=$this->wechatAuth;
        
        if($_GET['iscode']){
            $url="http://hdzs.zhed.com/index.php/Activity/index";
            $result=$wechatAuth->getRequestCodeurl($url);
            header("Location:{$result}");
            
        }else 
        if($_GET['code']){
            
            header('Content-type:text/html;charset=utf-8');
            
            $users=$wechatAuth->getAccessToken('code',$_GET['code']);//疑惑语句
            
            $User=M("User");//实例化user对象
            $openid=$users['openid'];
            session('openid',"$openid");//将用户的openid存入session中</code>
登录后复制
登录后复制
<code>public function users($wechat,$data){
    
        $openid=$data['FromUserName'];
        //session(null);
        // session('openid',"$openid");
        //$wechatAuth=$this->wechatAuth;//实例化 $wechatAuth对象
        ///$user=$wechatAuth->UserInfo($openid);
        $text="你的用户名是:". session('openid');
        $this->logger("发送用户消息".$text);
        //$wechat->replyText($text);
    }```</code>
登录后复制
登录后复制

回复内容:

在微信公众平台开发中 为什么在一个模块下的2个控制器中同一个session不能用

<code>//网页授权获取用户基本信息
    public function webUsers(){
        $token=session('token');
          $wechatAuth=new WechatAuth($this->appId,$this->appSecret,$token);
         //$wechatAuth=$this->wechatAuth;
        
        if($_GET['iscode']){
            $url="http://hdzs.zhed.com/index.php/Activity/index";
            $result=$wechatAuth->getRequestCodeurl($url);
            header("Location:{$result}");
            
        }else 
        if($_GET['code']){
            
            header('Content-type:text/html;charset=utf-8');
            
            $users=$wechatAuth->getAccessToken('code',$_GET['code']);//疑惑语句
            
            $User=M("User");//实例化user对象
            $openid=$users['openid'];
            session('openid',"$openid");//将用户的openid存入session中</code>
登录后复制
登录后复制
<code>public function users($wechat,$data){
    
        $openid=$data['FromUserName'];
        //session(null);
        // session('openid',"$openid");
        //$wechatAuth=$this->wechatAuth;//实例化 $wechatAuth对象
        ///$user=$wechatAuth->UserInfo($openid);
        $text="你的用户名是:". session('openid');
        $this->logger("发送用户消息".$text);
        //$wechat->replyText($text);
    }```</code>
登录后复制
登录后复制

<code>session(null);</code>
登录后复制

session(null); //已经把session清空了. 当然下面就拿不到了

相关标签:
php
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板