Home  >  Article  >  php教程  >  php获取Google机器人访问足迹的方法,google机器人

php获取Google机器人访问足迹的方法,google机器人

WBOY
WBOYOriginal
2016-06-13 09:06:521028browse

php获取Google机器人访问足迹的方法,google机器人

本文实例讲述了php获取Google机器人访问足迹的方法。分享给大家供大家参考。具体如下:

<&#63;php
$email = "test@test.com";
if(eregi("googlebot",$HTTP_USER_AGENT))
{
 if ($QUERY_STRING != "")
 {
  $url = "http://".$SERVER_NAME.$PHP_SELF.'&#63;'.$QUERY_STRING;
 } else {
  $url = "http://".$SERVER_NAME.$PHP_SELF;
 }
 $date = date("F j, Y, g:i a");
 mail($email,"[Googlebot] $url","$date - Google crawled $url");
}
&#63;>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn