Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能够打印出$_SESSIONS标题(位置)重定向之前和die()标题重定向之后包含的数据。
$_SESSIONS
die()
但是,当我被重定向时,没有数据包含在$_SESSIONS. 我检查过session_id()它们是一样的。我session_write_close()在重定向之前尝试过,但没有帮助。还有什么问题?
session_id()
session_write_close()
确保您使用的是$_SESSION而不是$_SESSIONS. 此外,请确保当前会话已加载到脚本中session_start();
$_SESSION
session_start();
如果您确定代码正确,请运行该脚本几次并检查您的 PHP 会话临时目录。问题很可能是 PHP 服务器没有正确的权限来写入会话文件目录。