PHP读取Cookie_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP读取Cookie

PHP读取Cookie

 2017/5/15 5:38:32  cakin24  程序员俱乐部  我要评论(0)
  • 摘要:一代码<?phpdate_default_timezone_set("PRC");//使用中华人民共和国的时区if(!isset($_COOKIE["visit_time"])){//如果Cookie文件是否存在,如果不存在setcookie("visit_time",date("Y-m-dH:i:s"));//设置一个Cookie变量$string="欢迎您第一次访问网站!";//输出字符串}else{//如果Cookie存在setcookie("visit_time",date("Y
  • 标签:PHP Cookie

一 代码

class="php"><?php
date_default_timezone_set("PRC");				//使用中华人民共和国的时区
if(!isset($_COOKIE["visit_time"])){							//如果Cookie文件是否存在,如果不存在
 	setcookie("visit_time",date("Y-m-d H:i:s")); 				//设置一个Cookie变量
	$string="欢迎您第一次访问网站!";						//输出字符串
}else{												//如果Cookie存在
	setcookie("visit_time",date("Y-m-d H:i:s"),time()+60); 		//设置带Cookie失效时间的变量
     $string="您上次访问网站的时间为:".$_COOKIE["visit_time"];	//输出上次访问网站的时间
}
	
?>
<style type="text/css">
<!--
.STYLE1 {
	font-family: "华文琥珀";
	font-size: 24px;
	color: #E45F00;
}
.STYLE2 {
	font-family: "华文琥珀";
	font-size: 18px;
	color: #E45F00;
}
.STYLE3 {
	font-weight: bold;
	font-size: 18px;
	font-family: "华文琥珀";
	color: #F1EAE0;
}
-->
</style>
<table width="469" height="260" border="0" cellpadding="0" cellspacing="0" background="images/bg1.jpg">
  <tr>
    <td width="59" height="100">&nbsp;</td>
    <td width="253" align="center"><span class="STYLE1">读取Cookie变量</span></td>
    <td width="157">&nbsp;</td>
  </tr>
  <tr>
    <td height="140">&nbsp;</td>
    <td align="center" valign="top" class="STYLE2"><?php echo $string; ?>	</td>
    <td align="center" class="STYLE3"><p>&nbsp;</p>
      <p><?php echo date("Y-m-d");		//输出当前的访问时间?></p>
    <p><?php echo date("H:i:s");?></p></td>
  </tr>
  <tr>
    <td height="20">&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>

?

? 二?运行结果 第一次运行:
? 第二次运行:
?
  • 大小: 33.4 KB
  • 大小: 35.6 KB
  • 查看图片附件
发表评论
用户名: 匿名