php记录网站访问,PHP简单实现记录网站访问量的功能
這篇文章主要介紹了PHP簡單實(shí)現(xiàn)記錄網(wǎng)站訪問量功能,涉及php針對文件加鎖讀寫及日期時(shí)間轉(zhuǎn)換等相關(guān)操作技巧,需要的朋友可以參考下
本文實(shí)例講述了PHP簡單實(shí)現(xiàn)記錄網(wǎng)站訪問量功能。分享給大家供大家參考,具體如下:
tongji/index.php文件:
$file = dirname(__FILE__).'/tongji.db';
//$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);
//設(shè)置記錄鍵值
$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];
//保存統(tǒng)計(jì)數(shù)據(jù)
ftruncate($fp,0); // 將文件截?cái)嗟浇o定的長度
rewind($fp); // 倒回文件指針的位置
fwrite($fp, serialize($tongji));
flock($fp,LOCK_UN);
fclose($fp);
//輸出數(shù)據(jù)
$total = $tongji[$total];
$month = $tongji[$month];
$today = $tongji[$today];
$yesterday = $tongji[$yesterday]?$tongji[$yesterday]:0;
echo "document.write('訪總問 {$total}, 本月 {$month}, 昨日 {$yesterday}, 今日 {$today}');";
}
使用方法(通過js引入tongji/index.php文件):
運(yùn)行結(jié)果:
相關(guān)推薦:
總結(jié)
以上是生活随笔為你收集整理的php记录网站访问,PHP简单实现记录网站访问量的功能的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 高层建筑火灾逃生器没有锁止功能
- 下一篇: java逻辑移位和算术移位,关于对移位运