如何从 setcookie() 获取过期时间?

发布于 2024-11-10 05:55:14 字数 260 浏览 0 评论 0原文

我有一个 cookie,仅适用于 ssl:

$data = $users->customer->getUsernames();
$data = join(",", $data);
setcookie('test_cookie', $data, time()+3600, '/root/en/server/', 
          'server.test.com', true);

现在,我如何获取此 cookie 的时间?

I have a cookie, which is working with ssl only:

$data = $users->customer->getUsernames();
$data = join(",", $data);
setcookie('test_cookie', $data, time()+3600, '/root/en/server/', 
          'server.test.com', true);

Now, how can i get time of this cookie?

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

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

发布评论

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

评论(1

放手` 2024-11-17 05:55:15

HTTP 请求中发送到服务器的 Cookie 内容仅包含您在 Cookie 中设置的变量/值,而不包含过期时间。如果需要,您可以在每次设置时“填充”cookie 值以包含过期时间。

The cookie contents sent in the HTTP request to your server only includes the variables/values that you set in the cookie, not the expiration time. If you want, you can "pad" the cookie value to include the expiration time each time you set it.

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