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

php判断手机浏览还是web浏览,并执行相应的动作

时间:2016-08-14 10:21:52      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

正好需要,在网上找了好久,记录一下

技术分享
 1 function isMobile(){  
 2     $useragent=isset($_SERVER[‘HTTP_USER_AGENT‘]) ? $_SERVER[‘HTTP_USER_AGENT‘] : ‘‘;  
 3     $useragent_commentsblock=preg_match(‘|\(.*?\)|‘,$useragent,$matches)>0?$matches[0]:‘‘;        
 4     function CheckSubstrs($substrs,$text){  
 5         foreach($substrs as $substr)  
 6             if(false!==strpos($text,$substr)){  
 7                 return true;  
 8             }  
 9             return false;  
10     }
11     $mobile_os_list=array(‘Google Wireless Transcoder‘,‘Windows CE‘,‘WindowsCE‘,‘Symbian‘,‘Android‘,‘armv6l‘,‘armv5‘,‘Mobile‘,‘CentOS‘,‘mowser‘,‘AvantGo‘,‘Opera Mobi‘,‘J2ME/MIDP‘,‘Smartphone‘,‘Go.Web‘,‘Palm‘,‘iPAQ‘);
12     $mobile_token_list=array(‘Profile/MIDP‘,‘Configuration/CLDC-‘,‘160×160‘,‘176×220‘,‘240×240‘,‘240×320‘,‘320×240‘,‘UP.Browser‘,‘UP.Link‘,‘SymbianOS‘,‘PalmOS‘,‘PocketPC‘,‘SonyEricsson‘,‘Nokia‘,‘BlackBerry‘,‘Vodafone‘,‘BenQ‘,‘Novarra-Vision‘,‘Iris‘,‘NetFront‘,‘HTC_‘,‘Xda_‘,‘SAMSUNG-SGH‘,‘Wapaka‘,‘DoCoMo‘,‘iPhone‘,‘iPod‘);  
13           
14     $found_mobile=CheckSubstrs($mobile_os_list,$useragent_commentsblock) ||  
15               CheckSubstrs($mobile_token_list,$useragent);  
16           
17     if ($found_mobile){  
18         return true;  
19     }else{  
20         return false;  
21     }  
22 }
23 if (isMobile()){
24     header(‘location: ./app/index.php‘);//如果为手机端,执行跳转
25 }
26 else{
27     header(‘location: ./web/index.php‘);//如果非手机端,执行跳转
28 }
技术分享

php判断手机浏览还是web浏览,并执行相应的动作

标签:

原文地址:http://www.cnblogs.com/pcyy/p/5769539.html

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