Php function code used to determine whether a visitor is a search engine spider-PHP source code

Source: Internet
Author: User
Php checks whether a visitor is a search engine spider's function code. For more information, see. Php checks whether a visitor is a search engine spider's function code. For more information, see.

The code is as follows:


/**
* Determine whether it is a search engine spider
*
* @ Author Eddy
* @ Return bool
*/
Function isCrawler (){
$ Agent = strtolower ($ _ SERVER ['http _ USER_AGENT ']);
If (! Empty ($ agent )){
$ SpiderSite = array (
"TencentTraveler ",
"Baiduspider + ",
"BaiduGame ",
"Googlebot ",
"Msnbot ",
"Sosospider + ",
"Sogou web spider ",
"Ia_archiver ",
"Yahoo! Slurp ",
"YoudaoBot ",
"Yahoo Slurp ",
"MSNBot ",
"Java (Often spam bot )",
"Baidusp ",
"Voila ",
"Yandex bot ",
"BSpider ",
"Twiceler ",
"Sogou Spider ",
"Speedy Spider ",
"Google AdSense ",
"Heritrix ",
"Python-urllib ",
"Alexa (IA Archiver )",
"Ask ",
"Exabot ",
"Custo ",
"OutfoxBot/YodaoBot ",
"Yacy ",
"SurveyBot ",
"Legs ",
"Lwp-trivial ",
"Nutch ",
"StackRambler ",
"The web archive (IA Archiver )",
"Perl tool ",
"MJ12bot ",
"Netcraft ",
"MSIECrawler ",
"WGet tools ",
"Larbin ",
"Fish search ",
);
Foreach ($ spiderSite as $ val ){
$ Str = strtolower ($ val );
If (strpos ($ agent, $ str )! = False ){
Return true;
}
}
} Else {
Return false;
}
}



I can find the ghost plug on the Internet, but it is not comprehensive enough to copy all the copies. here I have compiled a comprehensive code:

The code is as follows:


Function is_spider (){
$ Robot = 0;
$ USER_AGENT = strtolower ($ _ SERVER ['http _ USER_AGENT ']);
If (strpos ($ USER_AGENT, "bot") $ robot = 1;
If (strpos ($ USER_AGENT, "spider") $ robot = 1;
If (strpos ($ USER_AGENT, "slurp") $ robot = 1;
If (strpos ($ USER_AGENT, "mediapartners-google") $ robot = 1;
If (strpos ($ USER_AGENT, "fast-webcrawler") $ robot = 1;
If (strpos ($ USER_AGENT, "altavista") $ robot = 1;
If (strpos ($ USER_AGENT, "ia_archiver") $ robot = 1;
If ($ robot = 1 ){
// Do something
}
Return '';
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.