如何在某些非活动状态后自动注销会话?我想在zend框架中使用这个功能3.如果有人有想法那么请告诉我。目前我的应用程序在5分钟内使用zend skeleton注销。但是我希望会话到期时间至少为30分钟。
请提供上述解决方案。
答案 0 :(得分:0)
只需在module.config.php
中添加此会话配置,并确保在Zend\Session
config/modules.config.php
use Zend\Session\Storage\SessionArrayStorage;
return [
// your existing config
'session_config' => [
'cookie_lifetime' => 60 * 30
],
'session_storage' => [
'type' => SessionArrayStorage::class
],
];