使 AJAX PHP 脚本使用与主页相同的会话
我有一个启动 PHP 会话的主页,该会话创建会话 ID #1。我用 session_id()
检查这一点。我想从 PHP AJAX 脚本访问这些会话变量。为了测试这一点,我只需
session_start();
echo session_id();
从这个 AJAX 脚本 执行:它返回不同的 AJAX 会话 ID。
我知道我可以将会话 ID 从主页传递到 AJAX 脚本。是否有另一种方法可以使 AJAX 脚本默认打开同一个会话?
为了澄清起见,我通过 javascript 执行此操作,更具体地说,它是 JQGrid 的添加/编辑脚本。
I have a main page that starts a PHP session, which creates session ID #1. I check this with session_id()
. I want to access these session variables from a PHP AJAX script. To test this i just simply execute:
session_start();
echo session_id();
from this AJAX script. It returns a different AJAX session ID.
I know I can pass the session ID from the main page to the AJAX script. Is there another way to make the AJAX script open the same session by default?
For clarification I am doing this via javascript, more specifically it is the add/edit script for JQGrid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很简单。
在ajax中,将您的session_id发布到ajax php.ini中。
在 ajax php 中将其设置为: session_id($_REQUEST['sid'])
那么您位于同一个会话中
This is simple.
in ajax, post your session_id to the ajax php.
in ajax php set it like: session_id($_REQUEST['sid'])
then you are in the same session