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.
我使用 SimpleXMLElement 及其 asXML() 函数创建了一个 XML。我将此 XML 设置为会话变量。因此,一旦完成,我使用标头重定向到另一个 php 文件并尝试使用会话 xml。然而它是空的!我知道我还设置了其他一些会话变量,并且没有为空。唯一的空会话变量是 XML。为什么是这样?
谢谢您的帮助
最可能的罪魁祸首是您在写入数据或读取数据时没有初始化会话。
见session_start()
提供相关代码也很有用。