用 PHP 检测移动设备
我们将介绍一些在 PHP 中检测移动设备的方法。
在 PHP 中使用 mobiledetect
类检测移动设备
我们可以使用名为 Mobile Detect
的轻量级 PHP 类来检测 PHP 中的移动设备。它还可以检测平板设备。该库使用某些 HTTP 标头和用户代理字符串来检测移动设备。我们可以使用 Composer 使用以下命令下载库。
composer require mobiledetect/mobiledetectlib
该库提供了各种方法,如 isMobile()
、isTablet()
、isIOS()
来检测各种移动环境。我们可以创建 Mobile_Detect()
类的对象并使用这些方法。
例如,使用上面的 composer 命令下载项目目录中的库。接下来,使用 require_once
函数需要文件 autoload.php
。该文件位于 vendor
目录中。接下来,创建 Mobile_Detect()
类的对象 $detect
。然后,在 if
条件下使用函数 isMobile()
。在 if
块中,显示消息检测到移动设备
,并在 else
块中显示消息未检测到移动设备
。
下面的示例将检测网页是否是从移动设备访问的。下面的输出部分显示了从 PC 打开网页时的情况。我们可以通过在网页上单击鼠标右键找到响应式设计模式来检查元素。在那里,我们可以选择不同的移动设备并刷新脚本。当我们选择移动设备时,输出将更改为检测到移动设备
。这样,我们就可以使用 Mobile Detect
类来检测 PHP 中的移动设备。
示例代码:
require_once "vendor/autoload.php";
$detect = new Mobile_Detect;
if ( $detect->isMobile() ) {
echo "Mobile device detected";
}
else {
echo "Mobile device not detected";
}
?>
输出:
Mobile device not detected
在 PHP 中使用 HTTP_USER_AGENT
和 preg_match()
函数检测移动设备
我们可以使用字符串 HTTP_USER_AGENT
来获取有关用户浏览器访问网站的信息。我们将使用 $_SERVER
超全局变量和字符串作为数组元素。超全局变量包含有关网络服务器的信息。我们将创建在移动设备中找到的用户代理字符串的自定义集合。然后,我们可以使用 preg_match()
函数检查这些是否与当前用户正在浏览的浏览器匹配。随着支持的新移动设备的发布,可以手动添加用户代理字符串的集合。可在此处找到更新的用户代理字符串集合列表。
例如,创建一个变量 $user_agent
并在其中存储 $_SERVER["HTTP_USER_AGENT"]
。然后使用 preg_match()
函数来匹配用户代理字符串。使用字符串集合作为第一个参数。使用 $user_agent
变量作为第二个参数。最后,使用 if-else
条件相应地显示消息。
在这里,我们从 iPhone 打开了网页。因此用户代理字符串匹配集合。这样,我们就可以在 PHP 中检测移动设备了。
示例代码:
$user_agent = $_SERVER["HTTP_USER_AGENT"];
if(preg_match("/(android|webos|avantgo|iphone|ipod|ipad|bolt|boost|cricket|docomo|fone|hiptop|opera mini|mini|kitkat|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i",$user_agent ))
{
echo "mobile device detected";
}
else{
echo "mobile device not detected";
}
输出:
Mobile device detected
Subodh is a proactive software engineer, specialized in fintech industry and a writer who loves to express his software development learnings and set of skills through blogs and articles.
LinkedIn