wordpress如何实现访客统计

来源:undefined 2024-12-24 14:54:20 1013

下面由wordpress教程栏目给大家介绍wordpress实现访客统计的方法,希望对需要的朋友有所帮助!

wordpress程序修改

简单介绍一下用php+mysql实现简单的访客统计

一、php脚本

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

<?php 

//连接数据库

$conn=mysql_connect("localhost","root","root");

if(!$conn){

die("链接失败".mysql_errno());

}

//设置数据库编码方式

mysql_query("set names utf8",$conn) or die(mysql_errno());

//选择数据库

mysql_select_db("wordpress",$conn) or die(mysql_errno());

$adress=$_SERVER["REMOTE_ADDR"];

//将本次访客的ip地址添加到数据库中

$sql="select times from wp_count where ip=&#39;$adress&#39;";

$res=mysql_query($sql,$conn);

if(!$row=mysql_fetch_row($res)){

$sql="insert into wp_count(ip, times) values(&#39;$adress&#39;,&#39;1&#39;)";

}else{

$times = $row[&#39;0&#39;]+1;

$sql="update wp_count set times=&#39;$times&#39; where ip=&#39;$adress&#39;";

}

$res=mysql_query($sql,$conn);

//发送语句获取总数

$sql="select count(ip) from wp_count";

$res=mysql_query($sql,$conn);

if($row=mysql_fetch_row($res)){

$num=$row[&#39;0&#39;];

}

echo"您是第 "."$num"." 位访客"."您的ip地址是"."$adress";

mysql_close();

?>

登录后复制

解释:当数据库中当前ip没有的时候,执行insert。否则执行update。insert插入ip以及初始值times=1,update更新times+1。

二、数据库示例

表wp_count

  ps:上面的表结构满足我的需求,因为我的站点统计的是ip数,而且我将同一个ip无论访问多少次都认定为他是一个访客。页面上显示的多少位就是总共有多少个ip访问。

三、效果

  四、扩展

上面的示例使用的是数据库的方式实现。当然,如果使用txt文本的形式也是可以的。

在简单的访客统计的基础上,大家可以为自己的站点添加一个很精确的站点统计。例如实现访客上次访问时间,就可以利用js触发当访客关闭当前页面的时候修改访问时间就能实现。

以上就是wordpress如何实现访客统计的详细内容,更多请关注php中文网其它相关文章!

最新文章