Blogger Information
Blog 30
fans 1
comment 0
visits 23115
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP实现简单网站访客统计的方法实例
P粉896289085
Original
1153 people have browsed it

这篇文章主要给大家介绍了关于PHP实现简单网站访客统计的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

PHP网站访客统计
一、在网站根目录新建一个名为tongji.php的文件,然后写入以下代码

  1. <?php
  2. $n=file_get_contents('tongji.txt');
  3. $n++;
  4. file_put_contents('tongji.txt',$n);
  5. echo "document.write($n);";
  6. ?>

二、在需要显示的地方添加以下调用代码

你是第<script type=text/javascript src=tongji.php></script>位访问者

三、说明 加入调用代码后打开网页,会在后台生成一个名为tongji.txt的记录文件,编辑此文件可以实现修改访问量,如需统计次目录下的单页访问量,可以在次目录下新建tongji.php文件,然后添加调用代码即可

关于PHP file_get_contents() 函数的介绍如下:
定义和用法
file_get_contents() 把整个文件读入一个字符串中。
该函数是用于把文件的内容读入到一个字符串中的首选方法。如果服务器操作系统支持,还会使用内存映射技术来增强性能。
语法
file_get_contents(path,include_path,context,start,max_length)
参数 描述
path 必需。规定要读取的文件。
include_path 可选。如果您还想在 include_path(在 php.ini 中)中搜索文件的话,请设置该参数为 ‘1’。
context 可选。规定文件句柄的环境。context 是一套可以修改流的行为的选项。若使用 NULL,则忽略。
start 可选。规定在文件中开始读取的位置。该参数是 PHP 5.1 中新增的。
max_length 可选。规定读取的字节数。该参数是 PHP 5.1 中新增的。
提示和注释
提示:该函数是二进制安全的。(意思是二进制数据(如图像)和字符数据都可以使用此函数写入。)
总结
到此这篇关于PHP实现简单网站访客统计的文章就介绍到这了。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post