首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

PHP学习札记(四)cookie

2012-12-25 
PHP学习笔记(四)cookie1.setcookie() 函数用于设置 cookiesetcookie(name, value, expire, path, domain)

PHP学习笔记(四)cookie
1.setcookie() 函数用于设置 cookie
setcookie(name, value, expire, path, domain);
cookie常用于识别用户。setcookie() 函数必须位于 <html> 标签之前。

2.$_COOKIE取回cookie的值

3.isset()函数来确认是否已设置了 cookie

<html><body><?phpif (isset($_COOKIE["user"])){  // Print a cookie  echo $_COOKIE["user"];  // A way to view all cookies  print_r($_COOKIE);}else  echo "Welcome guest!<br />";?></body></html>


4.cookie删除
<?php // set the expiration date to one hour agosetcookie("user", "", time()-3600);?>

热点排行