子域会话问题
我正在尝试跨多个通配符子域访问会话数据。我使用以下方法设置会话:
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过使用:
当我遇到此问题时为我工作。
http://php.net/manual/en/function.session-regenerate -id.php
Have you tried using:
Worked for me when I have this problem.
http://php.net/manual/en/function.session-regenerate-id.php