PHP判断搜索引擎蜘蛛的代码

80酷酷网    80kuku.com

  if(stripos($str,'msnbot')){ //msn
         return false;
       }
       if(stripos($str,'Googlebot')){ //google
         return false;
       }
       if(stripos($str,'Sosospider')){ //soso
         return false;
       }
       if(stripos($str,'Sogou') && stripos($str,'spider')){ //Sogou
         return false;
       }
       if(stripos($str,'yahoo') && stripos($str,'Slurp')){ //雅虎
         return false;
       }
       if(stripos($str,'YodaoBot')){ //有道
         return false;
       }
       if(stripos($str,'iaskspider')){ //爱问
         return false;
       }

分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: