Home  >  Article  >  Backend Development  >  php检测用户是否用手机(Mobile)访问网站的类_PHP

php检测用户是否用手机(Mobile)访问网站的类_PHP

WBOY
WBOYOriginal
2016-06-01 11:57:25859browse

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

程序就是一个文件,下载之后直接引用就可以,基于MIT License协议开源的PHP程序

使用方法:
复制代码 代码如下:
include("Mobile_Detect.php");
$detect = new Mobile_Detect();

if ($detect->isMobile()) {
    // any mobile platform
    echo 'isMobile';
}
else{
    echo 'isPC';
}
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn