php统计网站访问次数的一个简单方法

php如何统计网站访问人数-LMLPHP

这里主要用到了session保存当前访问者,并将访问次数写入本地文件 (推荐学习:PHP视频教程

<?  
    @session_start();  
    $counter = intval(file_get_contents("counter.dat"));  //创建一个dat数据文件
    if(!$_SESSION['#'])  
    {  
     $_SESSION['#'] = true;  
     $counter++;  //刷新一次+1
     $fp = fopen("counter.dat","w");  //以写入的方式,打开文件,并赋值给变量fp
     fwrite($fp, $counter);   //将变量fp的值+1
     fclose($fp);  
    }  
?>
登录后复制

输入代码

<?php echo "$counter";?>
登录后复制

案列展示

<?php
    @session_start();  
    $counter = intval(file_get_contents("counter.dat"));  
    if(!$_SESSION['#'])  
    {  
     $_SESSION['#'] = true;  
     $counter++;  
     $fp = fopen("counter.dat","w");  
     fwrite($fp, $counter);  
     fclose($fp);  
    }  
 ?>
<p align="center">您是到访的第<?php echo "$counter";?>位用户</p>
登录后复制

以上就是php如何统计网站访问人数的详细内容,更多请关注Work网其它相关文章!

09-11 13:16