Home  >  Article  >  Backend Development  >  PHP method to determine whether it is a mobile client

PHP method to determine whether it is a mobile client

一个新手
一个新手Original
2017-09-12 10:34:453712browse


 0){// 检查浏览器是否接受 WML.
        return true;
   }elseif(preg_match('/(blackberry|configuration\/cldc|hp |hp-|htc |htc_|htc-|iemobile|kindle|midp|mmp|motorola|mobile|nokia|opera mini|opera |Googlebot-Mobile|YahooSeeker\/M1A1-R2D2|android|iphone|ipod|mobi|palm|palmos|pocket|portalmmm|ppc;|smartphone|sonyericsson|sqh|spv|symbian|treo|up.browser|up.link|vodafone|windows ce|xda |xda_)/i', $_SERVER['HTTP_USER_AGENT'])){//检查USER_AGENT
        return true;             
    }else{
        return false;    
   }
}
if(check_wap() && !$_GET['m']){
    Header('Location:http://www.sdceo.com/?m=wap');
}?>php判断是否手机客户端

 

The above is the detailed content of PHP method to determine whether it is a mobile client. For more information, please follow other related articles on the PHP Chinese website!

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