PHP记录搜索引擎蜘蛛访问网站足迹的方法

本文实例讲述了PHP记录搜索引擎蜘蛛访问网站足迹的方法分享给大家供大家参考。具体分析如下:

搜索引擎的蜘蛛访问网站是通过远程抓取页面来进行的,我们不能使用JS代码来取得蜘蛛的Agent信息,但是我们可以通过image标签,这样我们就可以得到蜘蛛的agent资料了,通过对agent资料的分析,就可以确定蜘蛛的种类、性别等因素,我们在通过数据库或者文本来记录就可以进行统计了。

数据库结构:

以下为引用的内容

rush:sql;"> # # 表的结构 `naps_stats_bot` #

CREATE TABLE naps_stats_bot (
botid int(10) unsigned NOT NULL auto_increment,botname varchar(100) NOT NULL default '',botagent varchar(200) NOT NULL default '',b<a href="https://www.jb51.cc/tag/ott/" target="_blank" class="keywords">ott</a>ag varchar(100) NOT NULL default '',botcount int(11) NOT NULL default '0',botlast datetime NOT NULL default '0000-00-00 00:00:00',botlasturl varchar(250) NOT NULL default '',UNIQUE KEY botid (botid),KEY botname (botname)
) TYPE=MyISAM AUTO_INCREMENT=9 ;

导出表中的数据 naps_stats_bot

INSERT INTO naps_stats_bot VALUES (1,'Googlebot','Googlebot/2.X (+http://www.googlebot.com/bot.html)','googlebot','0000-00-00 00:00:00','');
INSERT INTO naps_stats_bot VALUES (2,'MSNbot','MSNBOT/0.1 (http://search.msn.com/msnbot.htm)','msnbot','');
INSERT INTO naps_stats_bot VALUES (3,'Inktomi Slurp','Slurp/2.0','slurp','');
INSERT INTO naps_stats_bot VALUES (4,'Baiduspider','Baiduspider+(+http://www.baidu.com/search/spider.htm)','baiduspider','');
INSERT INTO naps_stats_bot VALUES (5,'Yahoobot','Mozilla/5.0+(compatible;+Yahoo!+Slurp;+http://help.yahoo.com/help/us/ysearch/slurp)','');
INSERT INTO naps_stats_bot VALUES (6,'Sohubot','sohu-search','');
INSERT INTO naps_stats_bot VALUES (7,'Lycos','Lycos/x.x','lycos','');
INSERT INTO naps_stats_bot VALUES (8,'Robozilla','Robozilla/1.0','robozilla','');

PHP程序如下:

以下为引用的内容

rush:PHP;"> query("UPDATE naps_stats_bot SET botcount=botcount+1,botlast=Now(),botlasturl='$tlc_thispage' WHERE botname='$searchbot'"); } ?>

希望本文所述对大家的PHP程序设计有所帮助。

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...