php网站访问统计代码一例

发布时间:2019-11-26编辑:脚本学堂
介绍一个php写的统计网站访问量的代码,数据保存在本地文件count3.dat中,在页面中用js调用。有需要的朋友,可以参考下。

1、统计页 count.php

<?php
/**
 * 网站访问统计
 * edit www.jb200.com
*/
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、页面调用

<script type="text/javascript" src="http://localhost/count.php"></script>