• 判断是否为蜘蛛抓取


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

  • 相关阅读:
    计算机网络——简单的端口扫描器
    Java课程设计——模拟行星运动
    H5 自定义数据属性
    实时获取网络状态
    Web 存储
    关于节流阀的理解
    DOM元素尺寸和位置
    H5选择符api
    HTML和XHTML的区别
    HTML的发展史
  • 原文地址:https://www.cnblogs.com/kwishly/p/3768399.html
Copyright © 2020-2023  润新知