PHP判断手机是IOS还是Android
程序员文章站
2022-05-25 14:21:44
本文介绍了php判断手机是ios还是android的三个小实例,要判断用户的手机是安卓的还是ios的,搜了一下相关的资料,最终获得的结果分享给大家。
实例1:主要是要用到...
本文介绍了php判断手机是ios还是android的三个小实例,要判断用户的手机是安卓的还是ios的,搜了一下相关的资料,最终获得的结果分享给大家。
实例1:主要是要用到http_user_agent,它表示的意思是用来检查浏览页面的访问者在用什么操作系统(包括版本号)浏览器(包括版本号)和用户个人偏好的代码。
监测代码如下:
function get_device_type() { //全部变成小写字母 $agent = strtolower($_server['http_user_agent']); $type = 'other'; //分别进行判断 if(strpos($agent, 'iphone') || strpos($agent, 'ipad')) { $type = 'ios'; } if(strpos($agent, 'android')) { $type = 'android'; } return $type; }
通过调用objective-c这个函数,就能获取到手机的类型。
实例2:只需要一个判断就好
<?php if(strpos($_server['http_user_agent'], 'iphone')||strpos($_server['http_user_agent'], 'ipad')){ echo 'systerm is ios'; }else if(strpos($_server['http_user_agent'], 'android')){ echo 'systerm is android'; }else{ echo 'systerm is other'; } ?>
实例3:这个实例可能有些偏题不过也分享给大家
function get_device_type() { //全部变成小写字母 $agent = strtolower($_server['http_user_agent']); $type ='other'; //分别进行判断 if(strpos($agent,'iphone') || strpos($agent,'ipad')) { $type ='ios'; } if(strpos($agent,'android')) { $type ='android'; } return$type; }
最后“买3赠一”,再为大家分享一个与本主题关系不大的小实例:
php判断页面是否是微信打开
$user_agent = $_server['http_user_agent']; if (strpos($user_agent, 'micromessenger') === false) { // 非微信浏览器禁止浏览 echo "http/1.1 401 unauthorized"; } else { // 微信浏览器,允许访问 echo "micromessenger"; // 获取版本号 preg_match('/.*?(micromessenger\/([0-9.]+))\s*/', $user_agent, $matches); echo '<br>version:'.$matches[2]; }
以上就是为大家分享的php判断手机是ios还是android的三段代码,希望大家喜欢,小编也会再接再厉,为大家提供更多实用的文章。