我在core.php中使用此配置:
Configure::write('Session', array(
'defaults' => 'php'
));
Configure::write('Session.save', 'custom_session_handler');
/**
* The level of CakePHP security.
*/
Configure::write('Security.level', 'high');
和custom_session_handler.php(在app / config中)
<?php
ini_set('session.cookie_lifetime', 0);
?>
当我关闭浏览器会话应该被销毁/不被记住 - 但它不起作用,当我关闭浏览器时我仍然登录...
我在PC上的WAMP服务器上使用Auth组件,cakePHP 2.0,php 5.3.9。 而且在我的php.ini中,Session.cookie_lifetime默认设置为0
答案 0 :(得分:1)
我找到了 - 应该是:
Configure::write('Session', array(
'defaults' => 'php',
'cookieTimeout' => 0,
));