首页 > Web开发 > 详细

[转]php-mobile-detect

时间:2014-01-23 04:04:51      阅读:380      评论:0      收藏:0      [点我收藏+]

转自: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

[转]php-mobile-detect

原文:http://www.cnblogs.com/Athrun/p/3530284.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!