我在我的密码用户申请中,利用一个厚颜的, 认证工作是罚款的,但当ilogout和点击Browseri能够浏览我申请中所访问的所有页,这些页都涉及用户的隐私,但如果试图更新Imlot。 当用户点击浏览浏览器的后纽吨时,如何迫使浏览器重载? 任何关于如何解决这一问题的建议都将受到赞赏。
http://www.ohchr.org。
主计长记录职能
function logout() {
//log the user out
$logout = $this->ion_auth->logout();
//redirect them back to the page they came from
redirect( auth , refresh );
}
这是从https://github.com/benedmunds/CodeIgniter-Ion-Auth” rel=“nofollow”到。
public function logout() {
$this->ci->ion_auth_model->trigger_events( logout );
$identity = $this->ci->config->item( identity , ion_auth );
$this->ci->session->unset_userdata($identity);
$this->ci->session->unset_userdata( group );
$this->ci->session->unset_userdata( id );
$this->ci->session->unset_userdata( user_id );
//delete the remember me cookies if they exist
if (get_cookie( identity )) {
delete_cookie( identity );
}
if (get_cookie( remember_code )) {
delete_cookie( remember_code );
}
$this->ci->session->sess_destroy();
$this->set_message( logout_successful );
return TRUE;
}
2.0.3
Thanx预支。