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 中设置了一个会话变量,那么每当我转到另一个页面时它都不会保存它。
我发现在 php.ini 中没有设置“session.save_path”,但是在更新它以使用“/tmp”之后它仍然不起作用。我怎样才能解决这个问题?
确保session_start()在需要会话变量的 PHP 脚本的开头调用。
session_start()