Home > php教程 > php手册 > PHP 如何获取Cookies

PHP 如何获取Cookies

WBOY
Release: 2016-06-21 08:46:36
Original
1447 people have browsed it

PHP Cookies
 

cookie 常用于识别用户。cookie 是一种服务器留在用户计算机上的小文件。每当同一台计算机通过浏览器请求页面时,这台计算机将会发送 cookie。通过 PHP,您能够创建并取回 cookie 的值。

如何创建 Cookie?

setcookie() 函数用于设置 cookie。 注释:setcookie() 函数必须位于 标签之前。 语法: setcookie(name, value, expire, path, domain); 在下面的例子中,我们将创建名为 "user" 的 cookie,并为它赋值 "Alex Porter"。我们也规定了此 cookie 在一小时后过期:
  1. setcookie("user","AlexPorter",time()+3600); 
  2. ?> 
  3.  
  4.  
  5. ..... 

注释:在发送 cookie 时,cookie 的值会自动进行 URL 编码,在取回时进行自动解码。(为防止 URL 编码,请使用 setrawcookie() 取而代之。)

如何取回 Cookie 的值?

PHP 的 $_COOKIE 变量用于取回 cookie 的值。 在下面的实例中,我们取回了名为 "user" 的 cookie 的值,并把它显示在了页面上:
  1. //Printacookie
  2. echo$_COOKIE["user"]; 
  3.  
  4. //Awaytoviewallcookies
  5. print_r($_COOKIE); 
  6. ?> 
在下面的实例中,我们使用 isset() 函数来确认是否已设置了 cookie:
  1.  
  2.  
  3.  
  4. if(isset($_COOKIE["user"])) 
  5. echo"Welcome".$_COOKIE["user"]."!
    "
  6. else
  7. echo"Welcomeguest!
    "
  8. ?> 
  9.  
  10.  
  11.  


如何删除 Cookie?

当删除 cookie 时,您应当使过期日期变更为过去的时间点。 删除的实例:
  1. //settheexpirationdatetoonehourago 
  2. setcookie("user","",time()-3600);  
  3. ?>  

JavaScript 如何创建、获取Cookies



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template