Codeigniter session will not unset

前端 未结 2 1693
北海茫月
北海茫月 2021-01-27 09:08

im working on a community, and i want to user to log off but it dosent unset the userdata :S, do you know why?

this is my controller function

function lo         


        
2条回答
  •  旧巷少年郎
    2021-01-27 10:01

    You can destroy an entire session by calling the following:

    $this->session->sess_destroy();
    

提交回复
热议问题