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

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

 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 }

 

转载于:https://www.cnblogs.com/Bowen666/p/5712164.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值