Home  >  Article  >  Backend Development  >  IE关闭后,PHPSESSIONID就被销毁了,这样怎么才能保存登录状态呢?

IE关闭后,PHPSESSIONID就被销毁了,这样怎么才能保存登录状态呢?

WBOY
WBOYOriginal
2016-06-06 20:24:161395browse

SESSIONID被销毁,之前登录过的用户又需要重新登录,怎么才能解决这个问题呢?

火狐浏览器就不会销毁,Chrome未测试

回复内容:

SESSIONID被销毁,之前登录过的用户又需要重新登录,怎么才能解决这个问题呢?

火狐浏览器就不会销毁,Chrome未测试

用cookie记状态

你百度下 php记住登录状态 就知道了。。
百度google能找到的问题,为什么来这里问呢?

用cookie记录登录状态

cookie 可以设置存放时间!!!

使用cookie啊,在客户打开网站的时候就直接先读取cookie数据,如果没过期,直接通过cookie获取用户数据,不过这样做有点不安全,容易泄露客户信息

<code class="php">setcookie("TestCookie", $value, time()+(3600*24*7));</code>

把session存数据库,再检查session过期时间

Statement:
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