php7中如何设置COOKIE和销毁COOKIE

php7中如何设置COOKIE和销毁COOKIE

1,如何设置COOKIE

setcookie ( string $name [, string $value = "" [, int $expire = 0 [, string $path = "" [, string $domain = "96net.com.cn" [, bool $secure = false [, bool $httponly = false ]]]]]] ) : bool

setrawcookie() 再设置值时候原样输出

2,销毁COOKIE

setcookie("TestCookie", $value, time()-3600);

3,获取COOKIE值

echo $_COOKIE["TestCookie"];

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章