PHP简单判断iPhone、iPad、Android及PC设备的方法
程序员文章站
2024-03-01 18:58:34
本文实例讲述了php简单判断iphone、ipad、android及pc设备的方法。分享给大家供大家参考,具体如下:
因为工作需要我们需要知道是什么样了用户访问了我网站了...
本文实例讲述了php简单判断iphone、ipad、android及pc设备的方法。分享给大家供大家参考,具体如下:
因为工作需要我们需要知道是什么样了用户访问了我网站了,现在的移动设备种类多了,下面我们一起来看小编整理的一段php判断iphone、ipad、android、pc设备的例子.
我将使用windows系统的设备定为pc,毕竟博客面向中国用户,大部分家用设备还是用的windows系统.
原理是判断浏览器提交的user agent,代码如下:
<?php //获取user agent $agent = strtolower($_server['http_user_agent']); //分析数据 $is_pc = (strpos($agent, 'windows nt')) ? true : false; $is_iphone = (strpos($agent, 'iphone')) ? true : false; $is_ipad = (strpos($agent, 'ipad')) ? true : false; $is_android = (strpos($agent, 'android')) ? true : false; //输出数据 if($is_pc){ echo "这是pc"; } if($is_iphone){ echo "这是iphone"; } if($is_ipad){ echo "这是ipad"; } if($is_android){ echo "这是android"; } ?>
如果你只判断是否为iphone设备可以如下来进行操作,代码如下:
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; }
更多关于php相关内容感兴趣的读者可查看本站专题:《php网络编程技巧总结》、《php curl用法总结》、《php socket用法总结》、《php正则表达式用法总结》、《php字符串(string)用法总结》、《php数组(array)操作技巧大全》、《php数学运算技巧总结》、《php面向对象程序设计入门教程》、《php数据结构与算法教程》、《php程序设计算法总结》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
上一篇: Python中字典和集合学习小结
下一篇: 理解Java当中的回调机制(翻译)