php setcookie时值为null或空字符串(删除cookie)
长久以来,在php中删除cookie的时候,都是使用
bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string
$domain [, bool $secure = false [, bool $httponly = false ]]]]]] )
$value 随便写, $expire设置为一个已经过去的时间即可。
官方文档中也是这样写的:
http://www.php.net/manual/en/function.setcookie.php
Example #2 setcookie() delete example
When deleting a cookie you should assure that the expiration date is in the past, to trigger
the removal mechanism in your browser. Examples follow how to delete cookies sent in previous
example:
代码如下 | 复制代码 |
// set the expiration date to one hour ago setcookie ("TestCookie", "", time() - 3600); setcookie ("TestCookie", "", time() - 3600, "/~rasmus/", "example.com", 1); ?> |
今天遇到一件奇怪的事, 在setcookie的时候,传了一个空字符串给$value,结果竟然是此cookie被删除了
…
代码如下 | 复制代码 |
$name = "post_url"; delete_cookie |
相当不解。
去翻php 5.4.13 的源码:
ext/standard/head.c
代码如下 | 复制代码 |
173 PHP_FUNCTION(setcookie) FAILURE) { domain_len, secure, 1, httponly TSRMLS_CC) == SUCCESS) { expires, char *path, int path_len, char *domain, int domain_len, int secure, int url_encode, int httponly TSRMLS_DC) and 14 */ \t\r\n\013\014'" ); isspace for 13 and 14 */ \t\r\n\013\014'" ); TSRMLS_CC); ""); expires, 0 TSRMLS_CC); |
参数中的value在C语言中的类型是char * , 还有一个 value_len标明了它的长度。
如果value_len为0的话,就写了下面的cookie:
值为”deleted”, 过期时间为 Thu, 01-Jan-1970 08:00:01 CST 或者说是 Thu, 01-Jan-1970 00:00:01
GMT
看来setcookie($name, “”) 确实可以删除这个cookie了…
同理,在php中,strval(NULL) === “” , 所以 setcookie($name, NULL) 也就相当于 setcookie($name,
“”),同样可以删除此cookie.
另外,比较好奇的是:
代码如下 | 复制代码 |
if (value && value_len == 0) { } else { } |
else 中包含了 value 为null 的情况, 这是一种什么样的情况呢?
看来setcookie($name, “”) 确实可以删除这个cookie了…
同理,在php中,strval(NULL) === “” , 所以 setcookie($name, NULL) 也就相当于 setcookie($name,
“”),同样可以删除此cookie.
另外,比较好奇的是:
代码如下 | 复制代码 |
if (value && value_len == 0) { } else { } |
else 中包含了 value 为null 的情况, 这是一种什么样的情况呢?