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.
我在 php 中的 Session 中存储一个值。使用 http referrer 进行重定向时,Session 变为 null。当我们使用 http referrer 时,有什么方法可以保留会话?
我在黑暗中拍摄。
在使用$_SESSION变量之前,您必须调用session_start(). $_SESSION如果会话尚未开始,则可能为 null。
$_SESSION
session_start()