|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
可以说你的马步已经扎的差不多了,接下来就要开始练把势的时候了,如果有条件的话,用笔或者打印一个简易的PHP手册在身上,时不时的摸出来看看,记得,去WC也不能放过(^2^)。
可以纪录Baidu,Google,Bing,Yahoo,Soso,Sogou,Yodao匍匐网站的纪录
代码以下:
01 <?php 02 //http://www.tongqiong.com 03 function get_naps_bot() 04 { 05 $useragent = strtolower($_SERVER['HTTP_USER_AGENT']); 06 07 if (strpos($useragent, '谷歌bot') !== false){ 08 return 'Google'; 09 } 10 11 if (strpos($useragent, '百度spider') !== false){ 12 return 'Baidu'; 13 } 14 if (strpos($useragent, 'msnbot') !== false){ 15 return 'Bing'; 16 } 17 18 if (strpos($useragent, 'slurp') !== false){ 19 return 'Yahoo'; 20 } 21 22 if (strpos($useragent, 'sosospider') !== false){ 23 return 'Soso'; 24 } 25 26 if (strpos($useragent, 'sogou spider') !== false){ 27 return 'Sogou'; 28 } 29 30 if (strpos($useragent, 'yodaobot') !== false){ 31 return 'Yodao'; 32 } 33 return false; 34 } 35 36 function nowtime(){ 37 $date=date("Y-m-d.G:i:s"); 38 return $date; 39 } 40 41 $searchbot = get_naps_bot(); 42 43 if ($searchbot) { 44 $tlc_thispage = addslashes($_SERVER['HTTP_USER_AGENT']); 45 $url=$_SERVER['HTTP_REFERER']; 46 $file="www.tongqiong.com.txt"; 47 $time=nowtime(); 48 $data=fopen($file,"a"); 49 fwrite($data,"Time:$time robot:$searchbot URL:$tlc_thispage\n"); 50 fclose($data); 51 } 52 //http://www.tongqiong.com 53 ?> 根据功能来进行封装等。很多的不懂,在使用搜索引擎查找,或者请教老师和在老师详细的讲解、指导下,都能顺利解决。 |
|