PHP中通过HTTP_USER_AGENT判断是否为手机移动终端的函数代码
2015-01-24信息快讯网
经常我们需要做一些判断是否是手机访问的时候,然后进行自动跳转操作,这是从一个PHP框架分离出来的一段判断是否为手机移动终端的函数,分享下
有时候很实用在一些场合,留住备用吧
function is_mobile_request() { $_SERVER['ALL_HTTP'] = isset($_SERVER['ALL_HTTP']) ? $_SERVER['ALL_HTTP'] : ''; $mobile_browser = '0'; if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|iphone|ipad|ipod|android|xoom)/i', strtolower($_SERVER['HTTP_USER_AGENT']))) $mobile_browser++; if((isset($_SERVER['HTTP_ACCEPT'])) and (strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml') !== false)) $mobile_browser++; if(isset($_SERVER['HTTP_X_WAP_PROFILE'])) $mobile_browser++; if(isset($_SERVER['HTTP_PROFILE'])) $mobile_browser++; $mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4)); $mobile_agents = array( 'w3c ','acs-','alav','alca','amoi','audi','avan','benq','bird','blac', 'blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno', 'ipaq','java','jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-', 'maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-', 'newt','noki','oper','palm','pana','pant','phil','play','port','prox', 'qwap','sage','sams','sany','sch-','sec-','send','seri','sgh-','shar', 'sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-', 'tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp', 'wapr','webc','winw','winw','xda','xda-' ); if(in_array($mobile_ua, $mobile_agents)) $mobile_browser++; if(strpos(strtolower($_SERVER['ALL_HTTP']), 'operamini') !== false) $mobile_browser++; // Pre-final check to reset everything if the user is on Windows if(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'windows') !== false) $mobile_browser=0; // But WP7 is also Windows, with a slightly different characteristic if(strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'windows phone') !== false) $mobile_browser++; if($mobile_browser>0) return true; else return false; }
文章来源:http://yi1.com.cn/posts/781
php 根据HTTP_USER_AGENT 判断用户浏览器类型
function browsers(){ global $HTTP_USER_AGENT ; if (isset($HTTP_USER_AGENT)){ $sAgent = $HTTP_USER_AGENT; }else{ $sAgent = $_SERVER['HTTP_USER_AGENT']; } if (strpos($sAgent,'MSIE') !== false && strpos($sAgent,'mac') === false && strpos($sAgent,'Opera') === false){ $iVersion = (float)substr($sAgent,strpos($sAgent,'MSIE') + 5,3); return ($iVersion >= 5.5) ; }else if (strpos($sAgent,'Gecko/') !== false){ $iVersion = (int)substr($sAgent,strpos($sAgent,'Gecko/') + 6,8); return ($iVersion >= 20030210) ; }else{ return false; } }
php number_format() 函数通过千位分组来格式化数字的实现代码
注意:php5.4删除了session_unregister函数
深入解析Session是否必须依赖Cookie
解析PHP中的unset究竟会不会释放内存
ie与session丢失(新窗口cookie丢失)实测及解决方案
Php output buffering缓存及程序缓存深入解析
PHP session_start()问题解疑(详细介绍)
Apache实现Web Server负载均衡详解(不考虑Session版)
如何解决CI框架的Disallowed Key Characters错误提示
PHP调用MsSQL Server 2012存储过程获取多结果集(包含output参数)的详解
服务器变量 $_SERVER 的深入解析
file_get_contents("php://input", "r")实例介绍
解析curl提交GET,POST,Cookie的简单方法
关于使用key/value数据库redis和TTSERVER的心得体会
解析file_get_contents模仿浏览器头(user_agent)获取数据
深入file_get_contents与curl函数的详解
执行、获取远程代码返回:file_get_contents 超时处理的问题详解
PHP下使用CURL方式POST数据至API接口的代码
PHP-redis中文文档介绍
php函数array_merge用法一例(合并同类数组)
set_include_path和get_include_path使用及注意事项
有关phpmailer的详细介绍及使用方法
PHP中CURL方法curl_setopt()函数的参数分享
mysqli_set_charset和SET NAMES使用抉择及优劣分析
PHP中header和session_start前不能有输出原因分析
PHP/Javascript/CSS/jQuery常用知识大全详细整理第1/2页
Fine Uploader文件上传组件应用介绍
关于mysql字符集设置了character_set_client=binary 在gbk情况下会出现表描述是乱码的情况
Could not load type System.ServiceModel.Activation.HttpModule解决办法
php5.3中连接sqlserver2000的两种方法(com与ODBC)
php如何调用webservice应用介绍
PHP5下$_SERVER变量不再受magic_quotes_gpc保护的弥补方法
仿Aspnetpager的一个PHP分页类代码 附源码下载
如何获知PHP程序占用多少内存(memory_get_usage)
PHP管理内存函数 memory_get_usage()使用介绍
浏览器关闭后,能继续执行的php函数(ignore_user_abort)