首页 > 开发 > PHP > 正文

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

2024-05-04 23:20:23
字体:
来源:转载
供稿:网友

下载地址

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

使用方法:

复制代码 代码如下:


<?php
include("Mobile_Detect.php");
$detect = new Mobile_Detect();

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表