当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-22 15:25:40 浏览: 评论:0 

这篇文章主要介绍了PHP记录搜索引擎蜘蛛访问网站足迹的方法,实例分析了针对php记录搜索引擎蜘蛛访问足迹的技巧,涉及数据库的创建及php记录各类常见搜索引擎访问的方法,需要的朋友可以参考下。

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

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

数据库结构:

以下为引用的内容:

  1. # 表的结构 `naps_stats_bot` 
  2.  
  3. CREATE TABLE `naps_stats_bot` ( 
  4. `botid` int(10) unsigned NOT NULL auto_increment, 
  5. `botname` varchar(100) NOT NULL default ''
  6. `botagent` varchar(200) NOT NULL default ''
  7. `bottag` varchar(100) NOT NULL default ''
  8. `botcount` int(11) NOT NULL default '0'
  9. `botlast` datetime NOT NULL default '0000-00-00 00:00:00'
  10. `botlasturl` varchar(250) NOT NULL default ''
  11. UNIQUE KEY `botid` (`botid`), 
  12. KEY `botname` (`botname`) 
  13. ) TYPE=MyISAM AUTO_INCREMENT=9 ; 
  14. # 导出表中的数据 `naps_stats_bot` 
  15. INSERT INTO `naps_stats_bot` VALUES (1, 'Googlebot''Googlebot/2.X (+http://www.googlebot.com/bot.html)''googlebot', 0, '0000-00-00 00:00:00'''); 
  16. INSERT INTO `naps_stats_bot` VALUES (2, 'MSNbot''MSNBOT/0.1 (http://search.msn.com/msnbot.htm)''msnbot', 0, '0000-00-00 00:00:00'''); 
  17. INSERT INTO `naps_stats_bot` VALUES (3, 'Inktomi Slurp''Slurp/2.0''slurp', 0, '0000-00-00 00:00:00'''); 
  18. INSERT INTO `naps_stats_bot` VALUES (4, 'Baiduspider''Baiduspider+(+http://www.baidu.com/search/spider.htm)''baiduspider', 0, '0000-00-00 00:00:00'''); 
  19. INSERT INTO `naps_stats_bot` VALUES (5, 'Yahoobot''Mozilla/5.0+(compatible;+Yahoo!+Slurp;+http://help.yahoo.com/help/us/ysearch/slurp)''slurp', 0, '0000-00-00 00:00:00'''); 
  20. INSERT INTO `naps_stats_bot` VALUES (6, 'Sohubot''sohu-search''sohu-search', 0, '0000-00-00 00:00:00'''); 
  21. INSERT INTO `naps_stats_bot` VALUES (7, 'Lycos''Lycos/x.x''lycos', 0, '0000-00-00 00:00:00'''); 
  22. INSERT INTO `naps_stats_bot` VALUES (8, 'Robozilla''Robozilla/1.0''robozilla', 0, '0000-00-00 00:00:00'''); 

PHP程序如下:

以下为引用的内容:

  1. <?php 
  2. /************************ 
  3. * NAPS -- Network Article Publish System 
  4. * ---------------------------------------------- 
  5. *     bot.php 
  6. *     ------------------- 
  7. *  begin  : 2004-08-15 
  8. * 
  9. ************************/ 
  10. /************************ 
  11. * 
  12. *  This program is free software; you can redistribute it and/or modify 
  13. *  it under the terms of the GNU General Public License as published by 
  14. *  the Free Software Foundation; either version 2 of the License. 
  15. * 
  16. ************************/ 
  17. /************************ 
  18. * 
  19. *  NAPS产品是自由软件。你可以且必须根据《GNU GPL-GNU通用公共许可证》的相关规定 
  20. *  复制、修改及分发NAPS产品。任何以NAPS产品为基础的衍生发行版未必须经过飘飘的授权。 
  21. * 
  22. ************************/ 
  23. error_reporting(E_ALL & ~E_NOTICE); 
  24. function get_naps_bot() 
  25.  $useragent = strtolower($_SERVER['HTTP_USER_AGENT']); 
  26.  if (strpos($useragent'googlebot') !== false){ 
  27.   return 'Googlebot'
  28.  } 
  29.  if (strpos($useragent'msnbot') !== false){ 
  30.   return 'MSNbot'
  31.  } 
  32.  if (strpos($useragent'slurp') !== false){ 
  33.   return 'Yahoobot'
  34.  } 
  35.  if (strpos($useragent'baiduspider') !== false){ 
  36.   return 'Baiduspider'
  37.  } 
  38.  if (strpos($useragent'sohu-search') !== false){ 
  39.   return 'Sohubot'
  40.  } 
  41.  if (strpos($useragent'lycos') !== false){ 
  42.   return 'Lycos'
  43.  } 
  44.  if (strpos($useragent'robozilla') !== false){ 
  45.   return 'Robozilla'
  46.  }     
  47.  return false; 
  48. $tlc_thispage = addslashes($_SERVER['HTTP_USER_AGENT']); 
  49. //添加蜘蛛的抓取记录 
  50. $searchbot = get_naps_bot(); 
  51. if ($searchbot) { 
  52.  $DB_naps->query("UPDATE naps_stats_bot SET botcount=botcount+1, botlast=NOW(), botlasturl='$tlc_thispage' WHERE botname='$searchbot'"); 
  53. ?>

Tags: PHP蜘蛛访问网站足迹

分享到: