[PHP]如何使用Mobile_Detect来判断访问网站的设备:安卓,平板,电脑

Mobile_Detect 是一个轻量级的开源移动设备(手机)检测的 PHP Class,

它使用 User-Agent 中的字符串,并结合 HTTP Header,来检测移动设备环境。

这个设备检测的 PHP 类库最强大的地方是,它有一个非常完整的库,

可以检测出所用的设备类型(包括操作类型,以及手机品牌等都能检测)和浏览器的详细信息。

官方主页:http://mobiledetect.net/

简单的使用方法如下:

  1. //使用实例  
  2.    
  3. include 'Mobile_Detect.php';  
  4. $detect = new Mobile_Detect();  
  5.    
  6. // Check for any mobile device.  
  7. if ($detect->isMobile())  
  8.    
  9. // Check for any tablet.  
  10. if($detect->isTablet())  
  11.    
  12. // Check for any mobile device, excluding tablets.  
  13. if ($detect->isMobile() && !$detect->isTablet())  
  14.    
  15. if ($detect->isMobile() && !$detect->isTablet())  
  16.    
  17. // Alternative to $detect->isAndroidOS()  
  18. $detect->is('AndroidOS');  
  19.    
  20. // Batch usage  
  21. foreach($userAgents as $userAgent){  
  22.   $detect->setUserAgent($userAgent);  
  23.   $isMobile = $detect->isMobile();  
  24. }  
  25.    
  26. // Version check.  
  27. $detect->version('iPad'); // 4.3 (float) 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值