PHP检测移动设备类mobile detection使用实例
“mobile detection”是一个轻量级移动设备检测的PHP类库,它采用结合特定的HTTP标头中的User-Agent字符串来检测移动客户端环境。注意,mobile detection 只是一个服务器端(PHP)的检测工具,并不能代替响应式Web设计或其他任何形式的客户端功能检测。
mobile detection 类库下载地址:https://github.com/serbanghita/Mobile-Detect
实例1:根据设备重定向到其他版本
当我们使用移动设备浏览某网站时,需要定向到该网站的移动版,首先将具有检测功能的文件Mobile_Detect.php包含到网页中或主页中,现在我们来实现浏览www.uncletoo.com网站时重定向到m.uncletoo.com中:
复制代码 代码如下:
/*根据文件位置更改路径信息*/
require_once 'Mobile_Detect.php';
$detect = new Mobile_Detect;
if($detect->isMobile()) {
header('Location: http://m.uncletoo.com/');
exit;
}
这是定向到移动网站,下面还有其他形式的重定向:
//所有平板设备
if( $detect->isTablet()) {
}
//是移动但非平板设备
if( $detect->isMobile() && !$detect->isTablet()) {
}
//IOS系统
if( $detect->isiOS()) {
}
//Android系统
if( $detect->isAndroidOS()) {
}
//WindowsPhone系统
if( $detect->isWindowsPhoneOS()) {
}
实例2:根据不同设备加载不同资源
如上所述,我们还可以根据不同的浏览设备加载不同的CSS文件。如:
复制代码 代码如下:
$detect = new Mobile_Detect;
if($detect->isMobile() || $detect->isTablet()) {
echo "";
} else {
echo "";
}
注意,mobile detection是一个移动设备检测平台,随着科技的进步会有不同的设备出现,因此你需要随时更新类库,这样才能保证检测的准确性。
推荐阅读
-
php检测用户是否用手机(Mobile)访问网站的类_php实例
-
PHP检测移动设备类mobile detection使用实例
-
PHP检测移动设备类mobile detection使用实例
-
PHP检测移动设备类mobile detection使用实例_PHP教程
-
Mobile Detect判断移动设备类型的PHP类
-
PHP检测移动设备类mobile detection使用实例_php实例
-
Mobile Detect判断移动设备类型的PHP类
-
Mobile Detect:判断移动设备类型的开源PHP类
-
检测移动设备(手机)的 PHP 类库
-
PHP检测移动设备类mobile detection使用实例_php实例