使 PHP cookie 在浏览器关闭后保留

发布于 2024-12-05 23:15:06 字数 61 浏览 0 评论 0原文

关闭浏览器后,用户会自动退出我的网站。

有没有办法让cookie在浏览器关闭后保持活动状态?

A user is automatically logged out of my site upon closing the browser.

Is there a way to make cookies stay active after the browser is closed?

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

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

发布评论

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

评论(2

不可一世的女人 2024-12-12 23:15:06
<?php
setcookie("test", "test", time()+3600);
?>

只需将其设置为将来到期的时间即可。

<?php
setcookie("test", "test", time()+3600);
?>

Just set the time on it to expire in the future.

独自唱情﹋歌 2024-12-12 23:15:06

您需要手动设置 cookie 来保持会话。您需要手动计算会话来在用户再次打开浏览器时识别用户。

You need to manualy set the cookies to keep the session. You need a manualy computed session to identify the user when he opens the browser again.

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