通过文本文件统计页面访问量

来源:互联网 发布:java shiro 权限控制 编辑:程序博客网 时间:2024/06/06 04:03
<?php   


  
//
if(!in_array($_SERVER['REMOTE_ADDR'],$_COOKIE)){   
   setcookie('user_id',$_SERVER['REMOTE_ADDR'],strtotime(date('Y-m-d 0:0:0'))+(24*60*60));
        $count=file_get_contents('count.txt');      
        $count=$count+1;
        $f_open=fopen('count.txt','wb') or die ("文件不存在");
        fwrite($f_open,$count);
        fclose($f_open);


}  


readfile('count.txt');
?>  
原创粉丝点击