PHP如何设置cookie有效期为当天0点到24点?

PHP如何设置cookie有效期为当天0点到24点?,第1张

使用PHP的setcookie函数可以设置cookie有效期为当天0点到24点

```

$time = strtotime("tomorrow")

$expireTime = $time - time()

setcookie("name", value, $expireTime)

```

回"问题补充"\x0d\x0a\x0d\x0aPHP手册上关于setcookie函数的expire参数有这样一个解释\x0d\x0aIf set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes). \x0d\x0a如果设为0 或者忽略该参数, cookie将在session结束时(关闭浏览器时)过期\x0d\x0a\x0d\x0a所以, 如果要写4,5个参数, 那把第三个设为0就可以了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7770898.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-09
下一篇 2023-04-09

发表评论

登录后才能评论

评论列表(0条)

保存