$_SESSION 数据存储在哪里以及何时被删除?

发布于 2024-12-03 02:29:10 字数 313 浏览 1 评论 0原文

可能的重复:
$_SESSION 变量存储在哪里?

我使用它来跨页面存储一些数据请求(搜索表单中两个字段的状态):

session_start();
$_SESSION = $_POST;

我想知道会话存储在哪里?它们什么时候被删除?

Possible Duplicate:
Where are $_SESSION variables stored?

I'm using this to store some data across page requests (state of two fields from a search form):

session_start();
$_SESSION = $_POST;

I was wondering where are sessions stored? And when do they get deleted?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少钕鈤記 2024-12-10 02:29:10

它们存储在 session_save_path。当会话被删除时(在 session_destroysession.gc_maxlifetime),tmp文件被擦除,然后回收硬盘上的空间。

They are stored in session_save_path. When the session is deleted (after session_destroy or session.gc_maxlifetime), the tmp file is erased and then the space on the HD is reclaimed.

ぃ双果 2024-12-10 02:29:10

它们存储在 php 服务器上,并在特定超时后当服务器没有收到来自关联客户端的请求时被删除。超时可在 php.ini 中配置或直接从脚本配置

They are stored on the php server, and get deleted after a certain timeout when the server hasn't had a request from the associated client. The timeout is configurable in php.ini or directly from your script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文