PHP判断是不是搜索引擎蜘蛛
PHP判断来访者是不是搜索引擎蜘蛛
<? function is_spider(){ $userAgent = strtolower($_SERVER['HTTP_USER_AGENT']); $spiders = array( 'spider', 'Googlebot', 'Baiduspider', 'sogou spider', 'sogou web', '360spider', 'YisouSpider', //神马 'YodaoBot', //有道 'Bytespider', //头条 'bing',//必应 'bot' ); foreach ($spiders as $spider) { $spider = strtolower($spider); if (strpos($userAgent, $spider) !== false) { return true; } } return false; } if (is_spider()){ echo '是蜘蛛';}?>
评论
发表评论: