当前位置:首页 > PHP教程 > php高级应用 > 列表

php统计网站/html页面浏览访问次数程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-21 11:25:46 浏览: 评论:0 

本文章来给大这介绍了php自己写的一些常用的网站统计代码写法,用无数据库的与使用数据库及html静态页面浏览资次数统计代码,大家可进入参考.

实例1,直接使用txt文件进行统计的代码,代码如下:

  1. <?php 
  2. session_start();//定义session,同一IP登录不累加 
  3. $filepath = 'count.txt'
  4. if ($_SESSION['temp'] == '')//判断$_SESSION[temp]的值是否为空,其中的temp为自定义的变量 
  5.  if (!file_exists($filepath))//检查文件是否存在,不存在刚新建该文件并赋值为0 
  6.  { 
  7.   $fp = fopen($filepath,'w'); 
  8.   fwrite($fp,0); 
  9.   fclose($fp); 
  10.   counter($filepath); 
  11.  }else 
  12.  { 
  13.   counter($filepath); 
  14.  } 
  15.  $_SESSION['temp'] = 1;//登录以后,给$_SESSION[temp]赋一个值1 
  16. echo '欢迎来到懒人站长素材网站,您是本站第<font color="#FF0000">'.file_get_contents($filepath).'</font>位访客'
  17. //counter()方法用来得到文件内的数字 
  18.  
  19. function counter($f_value
  20.  //用w模式打开文件时会清空里面的内容,所以先用r模式打开,取出文件内容,保存到变量 
  21.  $fp = fopen($f_value,'r'or die('打开文件时出错。'); 
  22.  $countNum = fgets($fp,1024); 
  23.  fclose($fp); 
  24.  $countNum++; 
  25.  $fpw = fopen($f_value,'w'); 
  26.  fwrite($fpw,$countNum); 
  27.  fclose($fpw); 
  28. //注释下面一行可以实现同一IP登录不累加效果,测试时可以打开 
  29. session_destroy(); 
  30. ?> 

上面使用的是txt文件,下面我们来介绍一个mysql数据库操作实例,代码如下:

  1. CREATE TABLE `mycounter` (  
  2. `id` int(11) NOT NULL auto_increment,  
  3. `Counter` int(11) NOT NULL,  
  4. `CounterLastDay` int(10) default NULL,  
  5. `CounterToday` int(10) default NULL,  
  6. `RecordDate` date NOT NULL,  
  7. PRIMARY KEY (`id`)  
  8. ) ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=2 ; 

函数代码如下:

  1. <?PHP  
  2. public function ShowMyCounter(){  
  3. //定义变量  
  4. $IsGone = FALSE;  
  5. //读取数据  
  6. $querysql = "SELECT * FROM `mycounter` WHERE id = Ƈ' ";  
  7. $queryset = mysql_query($querysql);  
  8. $row = mysql_fetch_array($queryset);  
  9. //获得时间量  
  10. $DateNow = date('Y-m-d');  
  11. $RecordDate = $row['RecordDate'];  
  12. $DateNow_explode = explode("-",$DateNow);  
  13. $RecordDate_explode = explode("-",$RecordDate);  
  14. //判断是否已过去一天  
  15. if$DateNow_explode[0] > $RecordDate_explode[0]) $IsGone = TRUE;  
  16. else if$DateNow_explode[0] == $RecordDate_explode[0] ){  
  17. if$DateNow_explode[1] > $RecordDate_explode[1] ) $IsGone = TRUE;  
  18. else if$DateNow_explode[1] == $RecordDate_explode[1] ){  
  19. if$DateNow_explode[2] > $RecordDate_explode[2] ) $IsGone = TRUE;  
  20. }else BREAK;  
  21. }else BREAK;  
  22. //根据IsGone进行相应操作  
  23. IF($IsGone) {  
  24. $RecordDate = $DateNow;  
  25. $CounterToday = 0;  
  26. $CounterLastDay = $row['CounterToday'];  
  27. $upd_sql = "update mycounter set RecordDate = '$RecordDate',CounterToday = '$CounterToday',CounterLastDay = '$CounterLastDay' WHERE id = Ƈ' ";  
  28. mysql_query($upd_sql);  
  29. }  
  30. //再次获取数据  
  31. $querysql = "SELECT * FROM `mycounter` WHERE id = Ƈ' ";  
  32. $queryset = mysql_query($querysql);  
  33. $Counter = $row['Counter'];  
  34. $CounterToday = $row['CounterToday'];  
  35. $CounterLastDay = $row['CounterLastDay'];  
  36. if($row = mysql_fetch_array($queryset) ){  
  37. if$_COOKIE["user"] != "oldGuest" ){  
  38. $Counter = ++$row['Counter'];  
  39. $CounterToday = ++$row['CounterToday'];  
  40. $upd_sql = "update mycounter set counter = '$Counter',CounterToday = '$CounterToday' WHERE id = Ƈ' ";  
  41. $myquery = mysql_query($upd_sql);  
  42. }  
  43. echo "总访问量:".$Counter;  
  44. echo "  
  45. ";  
  46. echo "今日流量:".$CounterToday;  
  47. echo "  
  48. ";  
  49. echo "昨日流量:".$CounterLastDay;  
  50. }else{//如果数据库为空时,相应的操作  
  51. }  
  52. }  
  53. ?>   

当然,需要在文件第一行开始写出如下代码:

  1. <?PHP  
  2. session_start();  
  3. if( !isset($_COOKIE["user"]) ){  
  4. setcookie("user","newGuest",time()+3600);  
  5. }else {  
  6. setcookie("user","oldGuest");  
  7. }  
  8. ?> 

如果是静态页面我们上面的方法是不可以实现的,但下面再举一个不错的统计实例,代码如下:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"
  2. <html> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
  5. <title>Insert title here</title> 
  6. <mce:script language="javascript" src="count.php?aid=1&t=show" mce_src="count.php?aid=1&t=show"></mce:script> 
  7. <mce:script language="javascript" src="count.php?aid=1" mce_src="count.php?aid=1"></mce:script> 
  8. </head> 
  9. <body> 
  10.  <h1>php统计静态html页面浏览访问次数代码</h1> 
  11.  <hr> 
  12. </body> 
  13. </html>  

count.php代码如下:

  1. <?php 
  2.     $aid  = isset( $_GET['aid'] )?$_GET['aid']:''
  3.     $t = isset( $_GET['t'] )?$_GET['t']:''
  4.  if(intval$aid )){ 
  5.   if$t =='show' ){ 
  6.     echo "document.write('这里是显示浏览次数,可以从数据库读出来');"
  7.   } 
  8.   else
  9.     $conn = mysql_connect('localhost','root','root') ; 
  10.     $sql = "Update count set click_num = click_num+1 where aid ='$aid'"
  11.     mysql_db_query('db_test',$sql,$conn); 
  12.   } 
  13.  } 
  14. ?> 

数据库,代码如下:

  1. -- 
  2. -- 表的结构 `count` 
  3. -- 
  4. CREATE TABLE IF NOT EXISTS `count` ( 
  5.   `id` int(11) NOT NULL auto_increment, 
  6.   `aid` int(11) default NULL
  7.   `click_num` int(11) default NULL
  8.   PRIMARY KEY  (`id`) 
  9. ) ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=2 ; 

Tags: php统计网站 html页面浏览

分享到: