当前设置:
Cakephp version 2.3.4.
会话配置为:
Configure::write('Session', array(
'defaults' => 'php',
'timeout' => '1440', // The session will timeout after 24 hours of inactivity
'cookieTimeout' => '1440', // The session cookie will live for at most 24 hours, this does not effect session timeouts
'checkAgent' => false,
'autoRegenerate' => true, // causes the session expiration time to reset on each page load
));
问题
当用户登录时,我会在会话中编写userId,就像这个$this->Session->write('user_id',123)
一样,对于其他API调用我从会话中读取user_id,如$this->Session->read('user_id');
问题有时(多次)$ this->会话 - >读取(' user_id')没有给我任何会话cookie过期的信息。
我在google和stackoverflow上阅读了所有内容并且无法弄明白。
任何帮助 谢谢 Amit Aggarwal