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

相关文章:

  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2021-10-28
  • 2021-11-28
  • 2021-11-05
  • 2021-10-26
  • 2021-08-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2022-01-07
  • 2022-12-23
  • 2021-08-15
相关资源
相似解决方案