PHP头条
热点:

移动设备检测类Mobile_Detect.php


Mobile_Detect.php是一个轻量级的开源移动设备检测的PHP Class。它使用User-Agent中的字符串,并结合 HTTP Header来检测移动设备环境。Mobile_Detect.php有一个非常完整的移动设备库,可以检测出所用的设备类型(包括操作系统类型,以及手机品牌等都能检测)和浏览器User-Agent的详细信息。

1、引入Mobile_Detect.php

require_once 'Mobile_Detect.php';

2、实例化Mobile_Detect类

$detect = new Mobile_Detect();

3、调用Mobile_Detect类里的方法和属性

//平板设备
if( $detect->isTablet()) {
}
//移动设备但非平板
if( $detect->isMobile() && !$detect->isTablet()) {
}
//IOS系统
if( $detect->isiOS()) {
}
//Android系统
if( $detect->isAndroidOS()) {
}
//WindowsPhone系统
if( $detect->isWindowsPhoneOS()) {
}

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

www.phpzy.comtrue/php/35824.htmlTechArticle移动设备检测类Mobile_Detect.php Mobile_Detect.php是一个轻量级的开源移动设备检测的PHP Class。它使用User-Agent中的字符串,并结合 HTTP Header来检测移动设备环境。Mobile_Detect.php有一个非常完整...

相关文章

PHP之友评论

今天推荐