首先我應該提醒你我已經閱讀this question,我正在使用Codeigniter 3。 我想用瀏覽器關閉像PHP會話一樣的會話! 有關使用AJAX這樣我已經閱讀出頭:如何在瀏覽器中關閉codeigniter 3
var unloadHandler = function(e){
//here ajax request to close session
};
window.unload = unloadHandler;
和.... ,但我不想讓自己依賴於JS與瀏覽器關閉破壞會議。 這是我config.php
$config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'soheil_blog_name';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = NULL;
$config['sess_match_ip'] = FALSE;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
http://stackoverflow.com/questions/13174297/how-to-destroy-session-with-browser-closing-in-codeigniter – Saty
這是不是笨3 –