php检测用户是否用手机(Mobile)访问网站的类
程序员文章站
2023-12-09 13:20:27
下载地址
程序就是一个文件,下载之后直接引用就可以,基于mit license协议开源的php程序
使用方法:复制代码 代码如下:
<?php
include("mobile_detect.php");
$detect = new mobile_detect();
if ($detect->ismobile()) {
// any mobile platform
echo 'ismobile';
}
else{
echo 'ispc';
}
?>
下载地址
程序就是一个文件,下载之后直接引用就可以,基于mit license协议开源的php程序
使用方法:
复制代码 代码如下:
<?php
include("mobile_detect.php");
$detect = new mobile_detect();
if ($detect->ismobile()) {
// any mobile platform
echo 'ismobile';
}
else{
echo 'ispc';
}
?>