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;
        }

  • 相关阅读:
    Win7+Centos7双系统安装/树莓派安装Centos7
    C++学习笔记
    Ubuntu Codeblocks配置Eigen Sophus
    Java笔记
    解决Mac下AndroidStudio内容时卡顿
    解决Android RadioGroup跑到输入法上面
    Activity去掉标题不成功的解决方法
    Synergy屏幕共享键鼠 (for Mac&Ubuntu)
    Android 限制控件多次点击
    Bitmap 创建、转换、圆角、设置透明度
  • 原文地址:https://www.cnblogs.com/kwishly/p/3768399.html
Copyright © 2011-2022 走看看