<?php
$file = dirname(__FILE__).'/tongji.txt';
//$data = unserialize(file_get_contents($file));
$fp=fopen($file,'r+');
$content='';
if (flock($fp,LOCK_EX)){
while (($buffer=fgets($fp,1024))!=false){
$content=$content.$buffer;
}
$data=unserialize($content);
//设置记录键值
$total = 'total';
$month = date('Ym');
$today = date('Ymd');
$yesterday = date('Ymd',strtotime("-1 day"));
$tongji = array();
// 总访问增加
$tongji[$total] = $data[$total] + 1;
// 本月访问量增加
$tongji[$month] = $data[$month] + 1;
// 今日访问增加
$tongji[$today] = $data[$today] + 1;
//保持昨天访问
$tongji[$yesterday] = $data[$yesterday];
//保存统计数据
ftruncate($fp,0); // 将文件截断到给定的长度
rewind($fp); // 倒回文件指针的位置
fwrite($fp, serialize($tongji));
flock($fp,LOCK_UN);
fclose($fp);
//输出数据
$total = $tongji[$total];
$month = $tongji[$month];
$today = $tongji[$today];
$yesterday = $tongji[$yesterday]?$tong
PHP统计页面总访问量、本月访问量、昨日访问量、今日访问量(点击次数,以简单的txt文本存储访问数据)
最新推荐文章于 2025-09-18 16:25:07 发布
该博客主要围绕PHP技术,介绍了统计页面总访问量(点击次数)的方法,并且采用简单的txt文本来存储访问数据,涉及到PHP在页面访问量统计及数据存储方面的应用。

最低0.47元/天 解锁文章
1万+

被折叠的 条评论
为什么被折叠?



