dpjpo746884 2014-07-16 12:48
浏览 21

为何在php命名空间内无法访问会话详细信息

I have developing a basic session handler class. The issue is when ever I am setting session into any controller action, same session details are not accessible in other action/controller. It displays me empty array. Entire system is php namespace oriented.

Reference: Session Manager

We do save and retrieve session as below.

use Cygnite\Common\SessionManager\Session;
use Cygnite\Common\Encrypt;                                    
$session = new Session(new Encrypt); 
$session->save($key, $value); 
$userDetails = $session->get($key); 

var_dump($userDetails); 

It works inside the same action and but when ever I am redirecting into some other controller ->action session doesn't display anything.

Can anyone help?

  • 写回答

1条回答 默认 最新

  • donglang7236 2014-07-16 13:08
    关注

    Probably you create in each controller new Session object. And it's quite possible you should create one Session object and inject it for example as constructor argument to other classes.

    use Cygnite\Common\SessionManager\Session;
    use Cygnite\Common\Encrypt;        
    
    $session = new Session(new Encrypt);
    $session->save('something', 'My data');
    
    class A 
    {
      private $session;
    
      public function __construct($session) {
          $this->session = $session;
    
          echo $this->sesssion->get('something'); // it should work
    
          $x = new Session(new Encrypt); 
          echo $x->get('something'); // possible it won't work
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c