10

在 Zend Framework 2 中启动和运行会话的最佳方法是什么?我已经尝试session_start()在我的 index.php 文件中进行设置,但是在任何自动加载器被引导之前运行它,导致我的会话中存在不完整的对象。

在 ZF1 中,您可以通过在配置中添加一些选项来初始化会话,但我不知道如何在 ZF2 中执行此操作。

4

1 回答 1

27

如果我对你的理解正确,你想做的就是让你的会话在你的模块中正常工作?假设这是正确的,有两个单独的步骤。

1)创建配置:module.config.php

return array(
    'session' => array(
        'remember_me_seconds' => 2419200,
        'use_cookies' => true,
        'cookie_httponly' => true,
    ),
);

2) 开始你的会话:Module.php

use Zend\Session\Config\SessionConfig;
use Zend\Session\SessionManager;
use Zend\Session\Container;
use Zend\EventManager\EventInterface;

public function onBootstrap(EventInterface $evm)
{
    $config = $evm->getApplication()
                  ->getServiceManager()
                  ->get('Configuration');

    $sessionConfig = new SessionConfig();
    $sessionConfig->setOptions($config['session']);
    $sessionManager = new SessionManager($sessionConfig);
    $sessionManager->start();

    /**
     * Optional: If you later want to use namespaces, you can already store the 
     * Manager in the shared (static) Container (=namespace) field
     */
    Container::setDefaultManager($sessionManager);
}

在\Zend\Session\Config\SessionConfig的文档中找到更多选项

如果您也想存储 cookie,请参阅此问题。感谢 Andreas Linden 他最初的回答——我只是复制粘贴他的。

于 2012-10-08T06:19:04.627 回答