$value = 'test';setcookie("TestCookie", $value);setcookie("TestCookie", $value, time()+3600); //有效期一小时setcookie("TestCookie", $value, time()+3600, "/path/", "imooc.com"); //设置路径与域
I saw this coolie code online, please explain? -PHP Chinese website Q&A-I saw this coolie code online, please explain? -PHP Chinese website Q&A
Please watch and learn.
这个第一个参数,是给你保存的cookie值取一个变量名,就像我们每个人的名字一样,
第二个参数,是你要保存的cookie值
第三个参数,是你的cookie值过期时间,单位是/s, 3600也就是1小时了
第四个参数,是你的cookie要保存的路径,这里是你的本地项目的path路径下
第五个参数,是你的cookie域了。
写错了,是一段关于cookie代码
I saw this coolie code online, please explain? -PHP Chinese website Q&A-I saw this coolie code online, please explain? -PHP Chinese website Q&A
Please watch and learn.
这个第一个参数,是给你保存的cookie值取一个变量名,就像我们每个人的名字一样,
第二个参数,是你要保存的cookie值
第三个参数,是你的cookie值过期时间,单位是/s, 3600也就是1小时了
第四个参数,是你的cookie要保存的路径,这里是你的本地项目的path路径下
第五个参数,是你的cookie域了。
写错了,是一段关于cookie代码