gpt4 book ai didi

PHP session 值

转载 作者:行者123 更新时间:2023-12-04 19:42:33 27 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





php.ini changes, but not effective on Ubuntu

(8 个回答)


3年前关闭。




我在 php.ini 中配置了 session 值,例如 session.gc_maxlifetime = 86400 ,但重新启动 apache 后更改不会生效,如图所示:

php.ini
phpinfo

最佳答案

您可以直接在脚本中修改 session 的默认 ttl:

ini_set("session.gc_maxlifetime", 86400); 
session_start();

但是作为 noticed in the documentation ,您必须考虑到:

If different scripts have different values of session.gc_maxlifetime but share the same place for storing the session data then the script with the minimum value will be cleaning the data. In this case, use this directive together with session.save_path.



那么你应该在 session.save_path 附近进行挖掘。也。

关于PHP session 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51270232/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com