cookies的PHP Cookies
cookie 常用于识别用户。cookie 是一种服务器留在用户计算机上的小文件。每当同一台计算机通过浏览器请求页面时,这台计算机将会发送 cookie。通过 PHP,您能够创建并取回 cookie 的值。 setcookie() 函数用于设置 cookie。
注释:setcookie() 函数必须位于 <html> 标签之前。
语法:
setcookie(name, value, expire, path, domain);
在下面的例子中,我们将创建名为 user 的 cookie,并为它赋值 Alex Porter。我们也规定了此 cookie 在一小时后过期: <?phpsetcookie(user,AlexPorter,time()+3600);?><html>.....注释:在发送 cookie 时,cookie 的值会自动进行 URL 编码,在取回时进行自动解码。(为防止 URL 编码,请使用 setrawcookie() 取而代之。) PHP 的 $_COOKIE 变量用于取回 cookie 的值。
在下面的实例中,我们取回了名为 user 的 cookie 的值,并把它显示在了页面上: <?php//Printacookieecho$_COOKIE[user];//Awaytoviewallcookiesprint_r($_COOKIE);?>在下面的实例中,我们使用 isset() 函数来确认是否已设置了 cookie: <html><body><?phpif(isset($_COOKIE[user]))echoWelcome.$_COOKIE[user].!<br>;elseechoWelcomeguest!<br>;?></body></html> 当删除 cookie 时,您应当使过期日期变更为过去的时间点。
删除的实例: <?php//settheexpirationdatetoonehouragosetcookie(user,,time()-3600);?>