数据分析师2017-09-30 23:04:29
Questions about deleting cookies-PHP Chinese website Q&A-Questions about deleting cookies-PHP Chinese website Q&A
Take a look and learn.
阿神2016-12-20 10:59:04
那是因为php中没有删除cookie的函数所以用这种方法刚好,就像添加cookie('testName','testValue',time( )+1);就是创建一个cookie 名字为testName值为(内容)testValue,之后的time( )+1就是有效期是当前时间过后1秒,如果是
setcookie('testName','testValue',time()+3600);意思都是与上面说的一样的只不过是cookie的有效期是当前时间加上3600秒,也就是一个小时,所以就像我前面所说的php中没有删除cookie的函数而cookie具有一旦过期就会被自动删除的性质,所以setcookie('testName','testValue',time( )-1);瞧这个cookie与前面的cookie的名字是重复的说以前面cookie的值与有效期就会被覆盖,所以有效期变成了当前时间-1秒当你运行代码的时候系统就会认为,这个cookie是过期的所以就自动删除了。