Symfony会话不适用于ubuntu

时间:2017-10-16 09:20:21

标签: php symfony

您好我在使用Symfony将数据存储到会话时遇到问题。

这是我的代码:

public function currentAction() {
        $session = $this->get('session');
        $userArray = $session->get('test');
        if($session->get('test') == null) {
            $userArray = User::toArray($this->getUser());
            $session->set('test', $userArray);
        }

        $this->setModel($userArray);
        $this->sendResponse();
}

当我尝试在有效时间内执行代码时,$ session-> get(' test')仍然返回null。任何人都可以帮助我吗? 我也从我的控制器类开始使用(使用Symfony \ Component \ HttpFoundation \ Session;)。

0 个答案:

没有答案