本文實例講述了PHP簡單實現(xiàn)記錄網(wǎng)站訪問量功能。分享給大家供大家參考,具體如下:
tongji/index.php文件:
$file = dirname(__FILE__).'/#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)計數(shù)據(jù)
ftruncate($fp,0); // 將文件截斷到給定的長度
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文件):
script language="JavaScript" src="./tongji/">/script>
運行結(jié)果:
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP目錄操作技巧匯總》、《php文件操作總結(jié)》、《PHP常用遍歷算法與技巧總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計算法總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計有所幫助。
您可能感興趣的文章:- php使用文本統(tǒng)計訪問量的方法
- 調(diào)用WordPress函數(shù)統(tǒng)計文章訪問量及PHP原生計數(shù)器的實現(xiàn)
- PHP基于cookie與session統(tǒng)計網(wǎng)站訪問量并輸出顯示的方法
- PHP實現(xiàn)網(wǎng)站訪問量計數(shù)器
- PHP用函數(shù)嵌入網(wǎng)站訪問量計數(shù)器
- php下用cookie統(tǒng)計用戶訪問網(wǎng)頁次數(shù)的代碼
- php利用cookie實現(xiàn)訪問次數(shù)統(tǒng)計代碼
- PHP+Memcache實現(xiàn)wordpress訪問總數(shù)統(tǒng)計(非插件)
- PHP實現(xiàn)通過文本文件統(tǒng)計頁面訪問量功能示例