码迷,mamicode.com
首页 > Web开发 > 详细

php获取设备型号

时间:2018-09-10 13:30:25      阅读:556      评论:0      收藏:0      [点我收藏+]

标签:rpo   oid   function   and   android   ||   agent   ipad   get   

/* 获取设备型号 */ 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获取设备型号

标签:rpo   oid   function   and   android   ||   agent   ipad   get   

原文地址:http://blog.51cto.com/12173069/2173191

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!