栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

检测移动浏览器[重复]

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

检测移动浏览器[重复]

有我的用户代理代码:

<?phpfunction check_user_agent ( $type = NULL ) {        $user_agent = strtolower ( $_SERVER['HTTP_USER_AGENT'] );        if ( $type == 'bot' ) {     // matches popular bots     if ( preg_match ( "/googlebot|adsbot|yahooseeker|yahoobot|msnbot|watchmouse|pingdom.com|feedfetcher-google/", $user_agent ) ) {  return true;  // watchmouse|pingdom.com are "uptime services"     }        } else if ( $type == 'browser' ) {     // matches core browser types     if ( preg_match ( "/mozilla/|opera//", $user_agent ) ) {  return true;     }        } else if ( $type == 'mobile' ) {     // matches popular mobile devices that have small screens and/or touch inputs     // mobile devices have regional trends; some of these will have varying popularity in Europe, Asia, and America     // detailed demographics are unknown, and South America, the Pacific Islands, and Africa trends might not be represented, here     if ( preg_match ( "/phone|iphone|itouch|ipod|symbian|android|htc_|htc-|palmos|blackberry|opera mini|iemobile|windows ce|nokia|fennec|hiptop|kindle|mot |mot-|webos/|samsung|sonyericsson|^sie-|nintendo/", $user_agent ) ) {  // these are the most common  return true;     } else if ( preg_match ( "/mobile|pda;|avantgo|eudoraweb|minimo|netfront|brew|teleca|lg;|lge |wap;| wap /", $user_agent ) ) {  // these are less common, and might not be worth checking  return true;     }        }        return false;}?>

如何使用:

<?php$ismobile = check_user_agent('mobile');if($ismobile) {return 'yes';} else {return 'no';}?>


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/435320.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号