«

php检测是否是移动端,php检测是否是手机客户端,移动设备检测Mobile_Detect.php

时间:2024-2-28 16:07     作者:韩俊     分类: PHP


php检测是否是移动端,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()) {
}

标签: php php教程

热门推荐