通过PHP程序知道蜘蛛是否访问你的网站(附代码)
发布:smiling 来源: PHP粉丝网 添加日期:2013-12-10 09:44:16 浏览: 评论:0
搜索引擎的蜘蛛访问网站是通过远程抓取页面来进行的,我们不能使用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程序:
- 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'");
- }
- ?>
Tags: PHP程序 蜘蛛访问
- 上一篇:显示访客的IP地址
- 下一篇:PHP设计福利彩票幸运号码自动生成器
相关文章
- ·PHP程序员一般都忽略了的几点精华(2014-01-13)
- ·php程序必看优化之方法(2014-05-24)
- ·汉字转换成Unicode编码PHP程序(2014-07-29)
- ·PHP万年历实现程序代码(2014-07-30)
- ·php 程序员常犯错误总结(2014-08-25)
- ·php简单数据保存程序实例(2014-08-25)
- ·解决PHP程序上传最大2M问题解决方法(2014-09-20)
- ·php程序页面空白问题排查方法详解(2015-04-08)
- ·PHP编程中尝试程序并发的几种方式总结(2019-11-14)
- ·PHP程序漏洞产生的原因分析与防范方法说明(2020-10-15)
- ·调试PHP程序的多种方法介绍(2021-04-24)
- ·php程序内部post数据的方法(2021-05-19)
- ·隐性调用php程序的方法(2021-05-28)
- ·PHP程序员不应该忽略的3点(2021-06-19)
- ·如何使用GDB调试PHP程序(2021-06-29)
- ·PHP记录搜索引擎蜘蛛访问网站足迹的方法(2021-05-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)