//补充路径参数,实现有效路径的设置setcookie('test', '1', 0, '/path');
这个0代表啥意思
PHP手册中的解释:
If set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes).
当浏览器关闭的时候,马上清除cookie。
可能理解的不到位,你自己看一下英文,自己翻译下。
cookie的时间啊