介绍一个php写的统计网站访问量的代码,数据保存在本地文件count3.dat中,在页面中用js调用。有需要的朋友,可以参考下。
1、统计页 count.php <?php /** * 网站访问统计 * edit bbs.it-home.org */ function pageVisitCount(){ $count= "count3.dat"; $num= @file_get_contents($count); if ($fp= fopen($count,"w+")){ flock($fp,LOCK_EX); $num++; fwrite($fp,$num); flock($fp,LOCK_UN); } return $num; } echo pageVisitCount(); ?> 2、页面调用 |