我是cakephp的新手。我用2.5版。我在退出功能方面遇到问题。代码
$this->Session->destroy();
如果我在注销会话后按下后退按钮,则会在我的代码中工作,然后会出现欢迎页面。刷新欢迎页面后,会话将销毁..这是我的问题会话。
public function logout(){
$this->Session->delete('username');
if( $this->Session->destroy()) {
echo $this->Session->setFlash("Congrats, you have successfully logged Out");
$this->redirect('/users/login');
}else{
echo $this->Session->setFlash("you failed in log Out");
}
}