php-mobile-detect

转自:http://www.oschina.net/p/php-mobile-detect

 

php-mobile-detect (Mobile_Detect) 是一个 PHP 类,用来通过 User-Agent 检测各种手机设备。

示例代码:

include("Mobile_Detect.php");
$detect
=newMobile_Detect();
if($detect->iOS()){
   
// code to run for the Apple iOS platform.
}
if($detect->isAndroidOS()){
   
// code to run for the Google Android platform.
}
if($detect->isMobile()){
   
// any mobile platform
}
if($detect->isTablet()){
   
// any tablet
}


下载地址:http://code.google.com/p/php-mobile-detect/downloads/list

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。