php中如何设置cookie

  • 来源:网络
  • 更新日期:2020-07-23

摘要:在php中设置cookie的语法是“setcookie("user",$user,time()+3600);”,其中“user”表示用户名,“$user”表示变量的值。PHP 设置和读取 Cookie一,设置 Cookiesetcookie("user"

在php中设置cookie的语法是“setcookie("user",$user,time()+3600);”,其中“user”表示用户名,“$user”表示变量的值。

PHP 设置和读取 Cookie

一,设置 Cookie

setcookie("user",$user,time()+3600);     // user 为用户名,$user 为变量的值

推荐:《PHP教程》

二,读取 Cookie

echo @$_COOKIE["user"];

相关介绍:

setcookie — 发送 Cookie

说明

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

setcookie() 定义了 Cookie,会和剩下的 HTTP 头一起发送给客户端。 和其他 HTTP 头一样,必须在脚本产生任意输出之前发送 Cookie(由于协议的限制)。 请在产生任何输出之前(包括 <html> 和 <head> 或者空格)调用本函数。

一旦设置 Cookie 后,下次打开页面时可以使用 $_COOKIE 读取。 Cookie 值同样也存在于 $_REQUEST。