我在 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