在我的页面中使用了会话,但预期的输出不会出现在我身上。我正在使用 ZendSkeletonApplication 和 ZfcUser
在视图/done.phtml
$sessionContainer = new \Zend\Session\Container('myNameSpace');
$checking="知道了";
$sessionContainer->myVar = $checking;
在 Controller/UserController.php 中
公共函数 doneAction()
{
$result=$this->getRequest()->getPost();
$sessionContainer = new \Zend\Session\Container('myNameSpace');
$confirmation=$sessionContainer->myVar;
print_r($confirmation);
return new ViewModel();
}