子域会话问题

发布于 2024-10-26 22:55:26 字数 477 浏览 0 评论 0原文

我正在尝试跨多个通配符子域访问会话数据。我使用以下方法设置会话:

<?php
session_name("session"); 
session_set_cookie_params(0, '/', '.example.com'); 
session_start();
$_SESSION['mID'] = 192;
?>

我在 sub1.example.com 上设置了上述会话。然后,我转到 sub2.example.com 并使用以下代码访问会话:

<?php
session_name("session"); 
session_set_cookie_params(0, '/', '.example.com'); 
session_start();
print_r($_SESSION);
?>

但会话是空的。我缺少什么?

I am trying to access session data across multiple wildcard sub domains. I set the session using the following:

<?php
session_name("session"); 
session_set_cookie_params(0, '/', '.example.com'); 
session_start();
$_SESSION['mID'] = 192;
?>

I set the above session while on sub1.example.com. I then go to sub2.example.com and use the following code to access the session:

<?php
session_name("session"); 
session_set_cookie_params(0, '/', '.example.com'); 
session_start();
print_r($_SESSION);
?>

But the session is empty. What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

司马昭之心 2024-11-02 22:55:26

您是否尝试过使用:

session_regenerate_id(true);

当我遇到此问题时为我工作。

http://php.net/manual/en/function.session-regenerate -id.php

Have you tried using:

session_regenerate_id(true);

Worked for me when I have this problem.

http://php.net/manual/en/function.session-regenerate-id.php

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