zoukankan      html  css  js  c++  java
  • 判断是否为蜘蛛抓取

     function checkIsZhizhu(){
            $flag = false;
            $tmp = $_SERVER['HTTP_USER_AGENT'];
            if(strpos($tmp, 'Googlebot') !== false){
                $flag = true;
            } else if(strpos($tmp, 'Baiduspider') >0){
                $flag = true;
            } else if(strpos($tmp, 'Yahoo! Slurp') !== false){
                $flag = true;
            } else if(strpos($tmp, 'msnbot') !== false){
                $flag = true;
            } else if(strpos($tmp, 'Sosospider') !== false){
                $flag = true;
            } else if(strpos($tmp, 'YodaoBot') !== false || strpos($tmp, 'OutfoxBot') !== false){
                $flag = true;
            } else if(strpos($tmp, 'Sogou web spider') !== false || strpos($tmp, 'Sogou Orion spider') !== false){
                $flag = true;
            } else if(strpos($tmp, 'fast-webcrawler') !== false){
                $flag = true;
            } else if(strpos($tmp, 'Gaisbot') !== false){
                $flag = true;
            } else if(strpos($tmp, 'ia_archiver') !== false){
                $flag = true;
            } else if(strpos($tmp, 'altavista') !== false){
                $flag = true;
            } else if(strpos($tmp, 'lycos_spider') !== false){
                $flag = true;
            } else if(strpos($tmp, 'Inktomi slurp') !== false){
                $flag = true;
            }
            return $flag;
        }

  • 相关阅读:
    有关try..catch..finally处理异常的总结
    java中finally和return的执行顺序
    慢查询处理
    阿里云数据库配置文件
    在DEV c++ 中如何设置默认的代码模板
    「C语言」单链表/双向链表的建立/遍历/插入/删除
    使用VS.NET2019做为C++开发专用IDE
    Windows下通过SSH无密码连接Linux服务器
    海沧区磁盘扩容思路办法
    Rabbitmq异常排查
  • 原文地址:https://www.cnblogs.com/kwishly/p/3768399.html
Copyright © 2011-2022 走看看