```
$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就可以了欢迎分享,转载请注明来源:内存溢出
评论列表(0条)