Home > Backend Development > PHP Tutorial > SESSION 不活动,不关闭浏览器,一个晚上也没有退出

SESSION 不活动,不关闭浏览器,一个晚上也没有退出

WBOY
Release: 2016-06-23 13:27:27
Original
1112 people have browsed it

第二天照常能正常使用,怎么改成比如不活动1小时,就要重新登录。


回复讨论(解决方案)

法-、修改php.ini的session.gc_maxlifetime为一小时
法二、修改客户端的PHPSESSID

setcookie('PHPSESSID', $PHPSESSID, time()+3600); // 储存SessionID到Cookie中,一小时销毁
Copy after login

显然你的服务器用的是 Windows 系统,且 session 临时目录不在操作系统的临时目录中

把服务器的session生存时间还有客户端的cookie生存时间 都设为1小时呗

显然你的服务器用的是 Windows 系统,且 session 临时目录不在操作系统的临时目录中



那要怎么解决,改到系统的临时目录就可以了吗
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template