A-A+ PHP判断iPhone、iPad、Android设备的方法 2016年10月19日 PHP, 未分类 暂无评论 阅读 1,818 views 次 $agent = strtolower($_SERVER['HTTP_USER_AGENT']); $isIOS = (strpos($agent, 'iphone') || strpos($agent, 'ipad')) ? true : false; if($isIOS) { $type = 'ios'; } else { $type = 'android'; }