时间:2021-07-01 10:21:17 帮助过:6人阅读
http://code.google.com/p/php-mobile-detect/
程序就是一个文件,下载之后直接引用就可以。
使用方法:
include("Mobile_Detect.php");
$detect = new Mobile_Detect();
if ($detect->isMobile()) {
// any mobile platform
echo 'isMobile';
}
else{
echo 'isPC';
}
?>
http://www.bkjia.com/PHPjc/440205.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/440205.htmlTechArticle有一个基于MIT License协议开源的PHP程序 http://code.google.com/p/php-mobile-detect/ 程序就是一个文件,下载之后直接引用就可以。 使用方法: ?php...