多个会话实例 Codeigniter
因此,我有一个使用 Codeigniter 构建的应用程序,当加载会话并且有人加载另一个将使用同一应用程序启动会话的 URL 时,我们遇到了一些麻烦。
问题在于第二个会话会覆盖初始会话(至少部分地)并损坏正在发送的数据。
我们正在使用数据库会话和加密。
寻求这方面的帮助。提前致谢。
So I have an app built using Codeigniter and we are experiencing some trouble when a session is loaded and someone loads another URL that would start a session with the same app.
The problem is that the second session is overwriting the initial session (at least partially) and corrupting the data being sent.
We are using database sessions and encryption.
Looking for help on this. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是给您的上一个线程:
多个 PHP 会话
该线程中未提及的另一件事是,如果您需要相同数据/数据占位符的多个会话,在会话变量前面添加识别前缀,例如:
希望这有帮助!
Here's a previous thread for you:
Multiple PHP Sessions
Another thing not mentioned in that thread is, if you need multiple sessions for the same data/data placeholders, to prepend the session variables with identifying prefixes, e.g.:
Hope this helps!