本文介绍了关闭浏览器后,带有expire = 0的setcookie不会过期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用setcookie制作一个带有expire = 0的cookie。从PHP文档中,
()

I use setcookie to make a cookie with expire=0. From the PHP document,(link)

我的php代码:

setcookie('option', 'yes', 0, '/');

但是,当我关闭并重新打开时,cookie仍然没有过期(仍然可以访问)

However, the cookie does still not expire (still can be accessed) when I close and re-open the browser(chrome but not firefox).

如何在关闭浏览器后使cookie过期?

How do I make the cookie expires when the browser is closed?

推荐答案

哦...这是因为我在chrome:// chrome / settings /中激活了继续我离开的地方。

oh... this is because I activated "Continue where I left off" in chrome://chrome/settings/.

请参见

这篇关于关闭浏览器后,带有expire = 0的setcookie不会过期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 09:01