有時候我們需要過濾搜尋引擎的流量
以下的代碼就相當的好用
function _bot_detected() { if (isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT'])) { return TRUE; } else { return FALSE; } }
資料來源 http://stackoverflow.com/questions/677419/how-to-detect-search-engine-bots-with-php