• Linux
  • apache
  • centos
  • Git版本管理
  • Linux基本命令
  • linux配置与优化
  • Nginx
  • PHP
  • Redis
  • Supervisor
  • Swoole
  • windows
  • THINKPHP
  • 开发者手册
  • Chat GPT / Open Ai
  • php判断各种移动端设备的函数

    全屏阅读
  • 基本信息
  • 作者:
  • 作者已发布:925篇文章
  • 发布时间:2021年03月06日 10:39:10
  • 所属分类:PHP+MySql
  • 阅读次数:2022次阅读
  • 标签:
  • 当我们需要分别判断 iPhone、Android以及iPad甚至QQbob主页等等,那么我们该如何判断呢?以下代码来判断各种移动端设备终端。

    移动端设备各种判断函数

    // 移动端设备各种判断函数
    function is_ipad() { // 只检测iPad
        $bro_msg = GetGuestAgent();
        $is_ipad = (bool) strpos($bro_msg,'iPad');
        if ($is_ipad)
            return true;
        else return false;
    }
    function is_iphone() { // 只检测iPhone
        $bro_msg = GetGuestAgent();
        $cn_is_iphone = (bool) strpos($bro_msg,'iPhone');
        if ($cn_is_iphone)
            return true;
        else return false;
    }
    function is_ios() { // 检测所有iOS设备
        if (is_iphone() || is_ipad())
            return true;
        else return false;
    }
    function is_android() { // 检测所有android设备
        $bro_msg = GetGuestAgent();
        $is_android = (bool) strpos($bro_msg,'Android');
        if ($is_android)
            return true;
        else return false;
    }
    function is_android_mobile() { // 只检测Android手机
        $bro_msg = GetGuestAgent();
        $is_android   = (bool) strpos($bro_msg,'Android');
        $is_android_m = (bool) strpos($bro_msg,'Mobile');
        if ($is_android && $is_android_m)
            return true;
        else return false;
    }
    function is_android_tablet() { // 只检测Android平板电脑
        if (is_android() && !is_android_mobile())
            return true;
        else return false;
    }
    function is_mobile_device() { // 检测Android手机、iPhone
        if (is_android_mobile() || is_iphone())
            return true;
        else return false;
    }
    function is_tablet() { // 检测Android平板电脑和iPad
        if ((is_android() && !is_android_mobile()) || is_ipad())
            return true;
        else return false;
    }
    function is_weixin() { // 检测bob主页
        $bro_msg = GetGuestAgent();
        if(stripos($bro_msg,'MicroMessenger') !== false )
            return true;
        else return false;
    }
    function is_QQ() { // 检测手机QQ
        $bro_msg = GetGuestAgent();
        if (strpos($bro_msg, 'iPhone') !== false || strpos($bro_msg, 'iPad') !== false) {
            if (strpos($bro_msg,' QQ') !==false)
            return true;//苹果qq打开
        }
        elseif (strpos($bro_msg, 'Android') !== false ) {
            if (strpos($bro_msg,'MQQBrowser') !==false) {
                if(strpos($bro_msg, '_SQ_') !== false)
                return true;//安卓qq打开
           }
                
        }
        else return false;
    }

    顶一下
    (0)
    100%
    订阅 回复
    踩一下
    (0)
    100%
    » 郑重声明:本文由mpxq168发布,所有内容仅代表个人观点。版权归恒富网mpxq168共有,欢迎转载, 但未经作者同意必须保留此段声明,并给出文章连接,否则保留追究法律责任的权利! 如果本文侵犯了您的权益,请留言。
  • 【上一篇】
  • 【下一篇】
  • 目前有 0 条留言 其中:访客:0 条, 博主:0 条

    给我留言

    您必须 [ 登录 ] 才能发表留言!