zoukankan      html  css  js  c++  java
  • php判断来路是手机端还是PC端 并跳转

    <?php
    
    	function is_mobile(){
    
    	     //正则表达式,批配不同手机浏览器UA关键词。
    
    	     $regex_match="/(nokia|iphone|android|motorola|^mot-|softbank|foma|docomo|kddi|up.browser|up.link|";
    
    	     $regex_match.="htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|";
    
    	     $regex_match.="blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|";
    
    	     $regex_match.="symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte-|longcos|pantech|gionee|^sie-|portalmmm|";
    
    	     $regex_match.="jigs browser|hiptop|^ucweb|^benq|haier|^lct|operas*mobi|opera*mini|320x320|240x320|176x220";
    
    	     $regex_match.=")/i";
    
    	    
    
    	     return isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE']) or preg_match($regex_match, strtolower($_SERVER['HTTP_USER_AGENT'])); //如果UA中存在上面的关键词则返回真。
    
    	}
    
    	   
    
    	     if(is_mobile()) {
    
    	     //如果为真,则进行WAP页面。
    
    	       header( "HTTP/1.1 301 Moved Permanently");  
    
    	       header("Location: http://");
    
    	     }else {    
    
    	     //如果为假,则进行WEB页面。
    
    	        header( "HTTP/1.1 301 Moved Permanently"); 
    
    	        header("Location: http://"); 
    
    	     }
    
    	?>
  • 相关阅读:
    valgrind检查:Conditional jump or move depends on uninitialised value(s)
    信号 SIGPIPE
    Snapdragon——1.定位游戏瓶颈
    unity修改所选路径下的,对象的importer属性
    git命令行
    ue4 lightmass研究
    leecode保存 简单题到ZY转换
    ue4 skybox
    ue4导入staticMesh
    uml类图的几种关系
  • 原文地址:https://www.cnblogs.com/paddygege/p/7070571.html
Copyright © 2011-2022 走看看