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

PHP判断客户端为PC还是手机

时间:2019-04-21 17:33:53      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:php   serve   false   mac   str   use   $_server   客户端   androi   

function is_mobile() { $agent = strtolower($_SERVER[‘HTTP_USER_AGENT‘]); $is_pc = (strpos($agent, ‘windows nt‘)) ? true : false; $is_mac = (strpos($agent, ‘mac os‘)) ? true : false; $is_iphone = (strpos($agent, ‘iphone‘)) ? true : false; $is_android = (strpos($agent, ‘android‘)) ? true : false; $is_ipad = (strpos($agent, ‘ipad‘)) ? true : false; if($is_pc){ return false; } if($is_mac){ return true; } if($is_iphone){ return true; } if($is_android){ return true; } if($is_ipad){ return true; } }

PHP判断客户端为PC还是手机

标签:php   serve   false   mac   str   use   $_server   客户端   androi   

原文地址:https://blog.51cto.com/14284354/2382263

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