PHP判断客户端为PC还是手机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP判断客户端为PC还是手机相关的知识,希望对你有一定的参考价值。

function is_mobile()
{
        $agent = strtolower($_SERVER[‘HTTP_USER_AGENT‘]);
        $is_pc = (strpos($agent, ‘windows nt‘)) ? true : false;
        $is_mac = (strpos($agent, ‘mac os‘)) ? true : false;
        $is_iphone = (strpos($agent, ‘iphone‘)) ? true : false;
        $is_android = (strpos($agent, ‘android‘)) ? true : false;
        $is_ipad = (strpos($agent, ‘ipad‘)) ? true : false;

        if($is_pc){
              return  false;
        }

        if($is_mac){
              return  true;
        }

        if($is_iphone){
              return  true;
        }

        if($is_android){
              return  true;
        }

        if($is_ipad){
              return  true;
        }
}

以上是关于PHP判断客户端为PC还是手机的主要内容,如果未能解决你的问题,请参考以下文章

PHP 判断终端是手机还是电脑访问网站代码

js判断客户端是pc端还是移动端

怎么用js判断是pc端还是手机端

php 判断是否手机端还是pc端

php 判断设备是手机还是平板还是pc

php判断是手机登陆还是PC登陆