多个会话实例 Codeigniter

发布于 2024-11-08 21:44:18 字数 172 浏览 0 评论 0原文

因此,我有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

π浅易 2024-11-15 21:44:18

这是给您的上一个线程:

多个 PHP 会话

该线程中未提及的另一件事是,如果您需要相同数据/数据占位符的多个会话,在会话变量前面添加识别前缀,例如:

$_SESSION['ss1_name'] = "Session 1 Name";

...

$_SESSION['ss2_name'] = "Session 2 Name";

希望这有帮助!

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

$_SESSION['ss1_name'] = "Session 1 Name";

...

$_SESSION['ss2_name'] = "Session 2 Name";

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文