Ecshop judge whether the search engine is a spider

Source: Internet
Author: User

<?PHP/** * to determine if search engine spider * * @access public * @return String*/functionIs_spider ($record=true){    Static $spider=NULL; if($spider!==NULL)    {        return $spider; }    if(Empty($_server[' Http_user_agent ']))    {        $spider= ' '; return‘‘; }    $searchengine _bot=Array(        ' Googlebot ', ' mediapartners-google ', ' baiduspider+ ', ' msnbot ', ' yodaobot ', ' Yahoo! slurp; ', ' Yahoo! Slurp China; ', ' iaskspider ', ' Sogou web spider ', ' Sogou push spider '    ); $searchengine _name=Array(        ' Google ', ' Google ADSENSE ', ' BAIDU ', ' MSN ', ' Yodao ', ' Yahoo ', ' Yahoo China ', ' Iask ', ' SOGOU ', ' SOGOU '    ); $spider=Strtolower($_server[' Http_user_agent ']); foreach($searchengine _bot  as $key=$value)    {        if(Strpos($spider,$value) !==false)        {            $spider=$searchengine _name[$key]; if($record===true)            {                $GLOBALS[' DB ']->autoreplace ($GLOBALS[' ECS ']->table (' searchengine '),Array(' Date ' = Local_date (' y-m-d '), ' searchengine ' =$spider, ' count ' = 1),Array(' count ' = 1)); }            return $spider; }    }    $spider= ' '; return‘‘;}?>

Ecshop judge whether the search engine is a spider

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.