$ this-> Session-> destroy()此行在cakephp 2.5中不起作用

时间:2015-05-19 05:22:00

标签: session cakephp-2.5

我是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");
  }

}

0 个答案:

没有答案