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 会话,以便我可以在条件下自己手动删除它们。我将如何停止垃圾收集器?
在 INI 集中
session.gc_probability = 0
这也可以完成,ini_set()但请确保每次session_start()通话都这样做。
ini_set()
session_start()
此外,值得注意的是,一些 Linux 发行版将其作为默认设置,并且有一个清理过期会话的 cron 作业。