PHP gevorderde |
|
Hoi iedereen.
Ik gebruik deze functie in PHP om Google bot te detecteren.
function isgooglebot($ip) {
// check to see if this IP really is a Googlebot
$bot = 'googlebot.com';
$name = gethostbyaddr($ip);
if ($name == $ip) return false;
return (strpos($name, $bot) !== false and gethostbyname($name) == $ip) ? true : false;
}
function isgooglebot($ip) { // check to see if this IP really is a Googlebot $bot = 'googlebot.com'; if ($name == $ip) return false; }
Zou het ook mogelijk zijn om zo yahoo slurp en msn bot te detecteren? Zo ja wat moet ik dan in plaats googlebot.com gebruiken?
Alvast Bedankt.
|