我想知道如何检测访问者在PHP中使用的Android设备,例如。 Galaxy S.从我的手机浏览Facebook时,我看到: “在你的Galaxy S上安装Facebook并快速浏览”
所以我查看了phpinfo();我在浏览Facebook时使用的浏览器位于我的服务器上,搜索“galaxy”文本并且没有匹配。那怎么来检测我的设备名称?我如何在PHP脚本中检测到它?
任何帮助都将不胜感激。
答案 0 :(得分:0)
使用超级全球$_SERVER
。
$useragent = $_SERVER['HTTP_USER_AGENT'];
$info = get_browser($useragent);
有关get_browser
结果的详细信息,请参阅此处的doku:http://de2.php.net/manual/en/function.get-browser.php
对于你的紫癜最重要的我猜是$info->platform
。
答案 1 :(得分:0)
在此处找到类似的内容: - http://forums.macrumors.com/showthread.php?t=205417
检查它是否对您有用。
<?php
/* detect mobile device*/
$ismobile = 0;
$container = $_SERVER['HTTP_USER_AGENT'];
// A list of mobile devices
$useragents = array (
'Blazer' ,
'Palm' ,
'Handspring' ,
'Nokia' ,
'Kyocera',
'Samsung' ,
'Motorola' ,
'Smartphone',
'Windows CE' ,
'Blackberry' ,
'WAP' ,
'SonyEricsson',
'PlayStation Portable',
'LG',
'MMP',
'OPWV',
'Symbian',
'EPOC',
);
foreach ( $useragents as $useragents ) {
if(strstr($container,$useragents)) {
$ismobile = 1;
}
}
if ( $ismobile == 1 ) {
echo "<p>mobile device</p>";
echo $_SERVER['HTTP_USER_AGENT'];
}
?>
这里的东西也是: - http://mobiledetect.net/
更多: - http://detectmobilebrowsers.mobi/
干杯!