2
當用戶登錄後,會話超時並重定向到主頁。會話超時問題
有誰知道爲什麼會發生這種情況?
下面的代碼是用於註銷:
if($user->isLogged())
{
$user->logout();
$session->set('error','Successfully Logged Out');
$response->redirect('index.php');
}
function logout() {
$this->session->delete('user_id');
$this->data = array();
}
function isLogged() {
return !empty($this->data);
}
有什麼辦法增加會議時間?
檢查http://lt.php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime – egis
@Natasha:你的問題是近一年了。你是如何解決你的問題的? – hakre