Mobile Detect 是一个轻量级的开源移动设备(手机和平板)检测的 PHP Class,它使用 User-Agent 中的字符串,并结合 HTTP Header,来检测移动设备环境。这个设备检测的 PHP 类库最强大的地方是,它有一个非常完整的库,可以检测出所用的设备类型(包括操作类型,以及手机品牌等都能检测)和浏览器的详细信息。
举例:
// 首先引入Mobile_Detect类文件
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
// 检测是否移动设备
if ( $detect->isMobile() ) {
}
// 是否来自平板电脑
if( $detect->isTablet() ){
}
// 检测操作系统
// 或者$detect->isAndroidOS()
if( $detect->isiOS() ){
}