我想问下,setcookie('test', '1', 0,'/'); 中那个1是value的值,0是什么?
6 回答
bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
然后对号入座,setcookie('test', '1', 0,'/')
test -- cookie的名字
1 -- cookie的值
0 -- cookie有效期。如果expire的值为0,当会话结束(关闭浏览器)时,cookie将会失效
1楼的说法有点问题,name是必须的,其他都是可选的才对。[]表示可选
举报
0/150
提交
取消