PHP function to determine whether the computer-side browser access Access or mobile browser access

Source: Internet
Author: User

Forget where to get the function, just can't find in a bag, temporarily saved up

/** *  whether mobile Access  * *  @return  bool */function ismobile () {      //  If Http_x_wap_profile is a mobile device     if  (isset  ($_server[' Http_x_wap_profile ']))     {        return  true;    }     //  If via information contains WAP, it must be a mobile device, some service associations block this information      if  (isset  ($_server[' Http_via '))     {          //  not found for flase, otherwise True        return  stristr ($_server[' Http_via '],  "WAP")  ? true : false;    }      //  brain Residue method, determine the mobile phone to send the client logo, compatibility needs to be improved     if  (isset  ($_ server[' Http_user_agent '))     {        $ clientkeywords = array&nbsp (' Nokia ',             ' Sony ',              ' Ericsson ',              ' mot ',              ' Samsung ',             ' HTC ',              ' SGH ',              ' LG ',             ' Sharp ',             ' sie-',              ' Philips ',              ' Panasonic ',             ' Alcatel ',             ' Lenovo ',              ' iphone ',             ' ipod ',             ' BlackBerry ',              ' Meizu ',              ' Android ',             ' NetFront ',             ' Symbian ',              ' UCWeb ',              ' WindowsCE ',             ' Palm ',             ' Operamini ',              ' Operamobi ',              ' Openwave ',             ' Nexusone ',              ' CLDC ',              ' MIDP ',              ' WAP ',             ' mobile '              );            Find the keyword         if  (Preg_match ("/(") for your phone's browser from Http_user_agent  . implode (' | ',  $clientkeywords)  .  ")/I",  strtolower ($_server[' http_user_agent ') )))         {             return true;        }     }      //  protocol law, because there may be inaccuracies, put to Final Judgment     if  (isset  ($_server[' http_accept ')))     {         //  If only WML is supported and HTML is not supported it must be a mobile device         //  If WML and HTML are supported but WML before HTML is mobile device         if  ((Strpos ($_server[' http_ ACCEPT '],  ' vnd.wap.wml ')  !== false)  &&  (Strpos ($_server[' http_accept '],  ' text/html ')  === false | |   (Strpos ($_server[' http_accept '],  ' vnd.wap.wml ')  < strpos ($_server[' http_accept '),   ' text/html '))         {             return true;        }      }     return false;} 


PHP function to determine whether the computer-side browser access Access or mobile browser access

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.