回复:主页 = http://mobiledetect.net/
回复
:此脚本 = Mobile_Detect.php
在此处下载脚本: https ://github.com/serbanghita/Mobile-Detect
该脚本功能完美地检测用户设备的不同参数。
但是,这就是我目前检测这些参数的方式:
// each part of the IF statement is hard-coded = not the way to do this
if($detect->isiOS()){
$usingOS = 'iOS';
}
if($detect->isAndroidOS()){
$usingOS = 'Android';
}
echo 'Your OS is: '.$usingOS;
我的目标是使用 FOREACH 遍历此脚本中的各种数组以确定用户设备的参数。我需要让“($detect->isXXXXOS())”是动态的......(这将基于KEY)。结果将显示 KEY。但检测将基于 VALUE。
此外,由于我的网页使用 REQUIRE 来访问此脚本......在Mobile_Script.php脚本中,数组是“受保护的”。我认为这也给我带来了问题(但我不确定)。
任何帮助表示赞赏。