Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function is_bot(){
  2.  
  3.     $bots = array(
  4.         'Googlebot', 'Baiduspider', 'ia_archiver',
  5.         'R6_FeedFetcher', 'NetcraftSurveyAgent', 'Sogou web spider',
  6.         'bingbot', 'Yahoo! Slurp', 'facebookexternalhit', 'PrintfulBot',
  7.         'msnbot', 'Twitterbot', 'UnwindFetchor',
  8.         'urlresolver', 'Butterfly', 'TweetmemeBot' );
  9.  
  10.     foreach($bots as $b){
  11.         if( stripos( $_SERVER['HTTP_USER_AGENT'], $b ) !== false ) return true;
  12.  
  13.     }
  14.     return false;
  15. }