PHP記錄搜尋引擎蜘蛛訪問網站足跡的方法_PHP

來源:互聯網
上載者:User
關鍵字 PHP 記錄 搜尋引擎蜘蛛 訪問足跡
本文執行個體講述了PHP記錄搜尋引擎蜘蛛訪問網站足跡的方法。分享給大家供大家參考。具體分析如下:

搜尋引擎的蜘蛛訪問網站是通過遠程抓取頁面來進行的,我們不能使用JS代碼來取得蜘蛛的Agent資訊,但是我們可以通過image標籤,這樣我們就可以得到蜘蛛的agent資料了,通過對agent資料的分析,就可以確定蜘蛛的種類、性別等因素,我們在通過資料庫或者文本來記錄就可以進行統計了。

資料庫結構:

以下為引用的內容:

## 表的結構 `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 '',`bottag` 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', 0, '0000-00-00 00:00:00', '');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', '');INSERT INTO `naps_stats_bot` VALUES (3, 'Inktomi Slurp', 'Slurp/2.0', 'slurp', 0, '0000-00-00 00:00:00', '');INSERT INTO `naps_stats_bot` VALUES (4, 'Baiduspider', 'Baiduspider+(+http://www.baidu.com/search/spider.htm)', 'baiduspider', 0, '0000-00-00 00:00:00', '');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', '');INSERT INTO `naps_stats_bot` VALUES (6, 'Sohubot', 'sohu-search', 'sohu-search', 0, '0000-00-00 00:00:00', '');INSERT INTO `naps_stats_bot` VALUES (7, 'Lycos', 'Lycos/x.x', 'lycos', 0, '0000-00-00 00:00:00', '');INSERT INTO `naps_stats_bot` VALUES (8, 'Robozilla', 'Robozilla/1.0', 'robozilla', 0, '0000-00-00 00:00:00', '');

PHP程式如下:

以下為引用的內容:

<?php/************************* NAPS -- Network Article Publish System* ----------------------------------------------*     bot.php*     -------------------*  begin  : 2004-08-15*************************//**************************  This program is free software; you can redistribute it and/or modify*  it under the terms of the GNU General Public License as published by*  the Free Software Foundation; either version 2 of the License.*************************//**************************  NAPS產品是自由軟體。你可以且必鬚根據《GNU GPL-GNU通用公用許可證》的相關規定*  複製、修改及分發NAPS產品。任何以NAPS產品為基礎的衍生髮行版未必須經過飄飄的授權。*************************/error_reporting(E_ALL & ~E_NOTICE);function get_naps_bot(){ $useragent = strtolower($_SERVER['HTTP_USER_AGENT']); if (strpos($useragent, 'googlebot') !== false){  return 'Googlebot'; } if (strpos($useragent, 'msnbot') !== false){  return 'MSNbot'; } if (strpos($useragent, 'slurp') !== false){  return 'Yahoobot'; } if (strpos($useragent, 'baiduspider') !== false){  return 'Baiduspider'; } if (strpos($useragent, 'sohu-search') !== false){  return 'Sohubot'; } if (strpos($useragent, 'lycos') !== false){  return 'Lycos'; } if (strpos($useragent, 'robozilla') !== false){  return 'Robozilla'; }     return false;}$tlc_thispage = addslashes($_SERVER['HTTP_USER_AGENT']);//添加蜘蛛的抓取記錄$searchbot = get_naps_bot();if ($searchbot) { $DB_naps->query("UPDATE naps_stats_bot SET botcount=botcount+1, botlast=NOW(), botlasturl='$tlc_thispage' WHERE botname='$searchbot'");}?>

希望本文所述對大家的php程式設計有所協助。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.