使用cookie实现统计访问者登陆次数
2015-01-24信息快讯网
本篇文章是对使用cookie实现统计访问者登陆次数的代码进行了详细的分析介绍,需要的朋友参考下
<?php $_COOKIE["counter"]?($c=$_COOKIE["counter"]+1):($c=1); setCookie("counter",$c,time()+60); echo "<b>欢迎您第"."<font color=#ff0000>".$c."</font>次访问cookie</b>"; ?>
在这个应用程序中,首先是浏览器请求一个资源(这个php页面) ,发送下面的HTTP包头内容到服务器:
GET http://localhost/index.php HTTP/1.1
HOST:localhost
Accept:*/*
Accept-language:zh-cn
Accept-Encoding:gzip,deflate
User-Agent:Mozilla/4.0 (compatible;MSIE 6.0;Windows NT 5.1;SV1)
Connection:Keep-Alive
---------------------------------------------------------------------------
现在是动态网页程序(index.php)创建了Cookie,那么,服务器会传输下面的HTTP报头内容到浏览器:
HTTP/1.1 200 OK
Server:Apache/2.2.6 (Win32) PHP/5.2.6
Date:Fri,23 Mar 2009 23:15:55 GMT
Connection:Keep-Alive
Content-Length:65
Content-Typt:text/html
Set-Cookie:VisitorCount=1; expires=Thr,30-Jul-2010 16:00:00 GMT;domain=localhost;path=/
Cache-control:private
GET http://localhost/index.php HTTP/1.1
---------------------------------------------------------------------------
这将在客户端保存一个cookie文件,并保存$c变量
当再次请求时,就会将cookie中的数据传给服务器,例如下边的HTTP请求报头:
Accept:*/*
Accept-language:zh-cn
Pragma:no-cache
User-Agent:Mozilla/4.0(compatible;MSIE 6.0;Windows NT 5.1; SV1)
Host:localhost
Connection:Keep-Alive
Cookie:VisitorCount=1
解决file_get_contents无法请求https连接的方法
Server.HTMLEncode让代码在页面里显示为源代码
使用php检测用户当前使用的浏览器是否为IE浏览器
CodeIgniter生成网站sitemap地图的方法
php file_get_contents抓取Gzip网页乱码的三种解决方法
CodeIgniter使用phpcms模板引擎
php cookie使用方法学习笔记分享
PHP CURL获取cookies模拟登录的方法
PHP关于IE下的iframe跨域导致session丢失问题解决方法
新手菜鸟必读:session与cookie的区别
怎样使用php与jquery设置和读取cookies
深入解析Session是否必须依赖Cookie
PHP计数器的实现代码
使用session判断用户登录用户权限(超简单)
简单的cookie计数器实现源码
探讨多键值cookie(php中cookie存取数组)的详解
深入理解:单一入口、MVC、ORM、CURD、ActiveRecord概念
PHP CodeBase:将时间显示为"刚刚""n分钟/小时前"的方法详解
探讨file_get_contents与curl效率及稳定性的分析
PHP Cookie的使用教程详解
setcookie中Cannot modify header information-headers already sent by错误的解决方法详解
LotusPhp笔记之:Cookie组件的使用详解