PHP
- 1 ответ
- 0 вопросов
0
Вклад в тег
class ScanBot
{
public function isBot()
{
$down_reg = mb_strtolower($_SERVER['HTTP_USER_AGENT']);
$down_reg = str_replace(array(' '), '', $down_reg);
$find_bot_step1 = str_replace(array('yandex', 'google', 'yahoo', 'bing'), ' this_is_bot! ', $down_reg);
$find_bot_step2 = explode(' ', $find_bot_step1);
if ($find_bot_step2[1] == "this_is_bot!") {
return true;
}
return false;
}
}