Home > Backend Development > PHP Tutorial > session有关问题

session有关问题

WBOY
Release: 2016-06-13 13:38:39
Original
808 people have browsed it

session问题
遇到一个奇怪问题,
session处理。我用的是数据库,但问题就来了。
用户登录信息一直保存不了,跟踪后,发现多次调用session_write(),存入数据库的sql只有第一次数据是对的。然后不使用数据库存储,使用files存储。问题就没有了。似乎是处理session的脚本出了问题,但在本地测试又是好的。只有线上有问题。对照phpinfo打出的session信息,没发现什么不一样。这是什么情况呀?

------解决方案--------------------
关键看你是怎么写入数据库的啊。。你应该没更新最近的session
------解决方案--------------------
写入到数据库时出问题吧
------解决方案--------------------
session_write 中应判断对应的 session_id 是否存在
如存在,就执行 修改 update
否则执行插入 insert
------解决方案--------------------

探讨

引用:

session_write 中应判断对应的 session_id 是否存在
如存在,就执行 修改 update
否则执行插入 insert


在本地测试不会出现多次插入或更新的情况。

谢谢各位帮忙
Related labels:
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