网站地图    收藏   

主页 > php专栏 > php应用 >

检测移动设备的php代码,手机访问 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] 如果我们要判断访问网站的是手机用户还是PC用户我们只要获取用户的HTTP_USER_AGENT即可,我先介绍了一个通用的Mobile_Detect,后面两个例子是自己写的希望对各位有帮助 php代码实例如下: 使用...

检测移动设备的php代码,手机访问

如果我们要判断访问网站的是手机用户还是PC用户我们只要获取用户的HTTP_USER_AGENT即可,我先介绍了一个通用的Mobile_Detect,后面两个例子是自己写的希望对各位有帮助.

php代码实例如下:

  1. //使用实例 
  2.  
  3. include 'Mobile_Detect.php'
  4. $detect = new Mobile_Detect(); 
  5.  
  6. // Check for any mobile device. 
  7. if ($detect->isMobile()) 
  8.  
  9. // Check for any tablet. 
  10. if($detect->isTablet()) 
  11.  
  12. // Check for any mobile device, excluding tablets. 
  13. if ($detect->isMobile() && !$detect->isTablet()) 
  14.  
  15. if ($detect->isMobile() && !$detect->isTablet()) 
  16.  
  17. // Alternative to $detect->isAndroidOS() 
  18. $detect->is('AndroidOS'); 
  19.  
  20. // Batch usage 
  21. foreach($userAgents as $userAgent){ 
  22.   $detect->setUserAgent($userAgent); 
  23.   $isMobile = $detect->isMobile(); 
  24.  
  25. // Version check. 
  26. $detect->version('iPad'); // 4.3 (float) 

php判断手机访问,代码如下:

  1. ua = strtolower($_SERVER['HTTP_USER_AGENT']); 
  2.  
  3. $uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile|wap)/i"
  4.  
  5. if(($ua == '' || preg_match($uachar$ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap')) 
  6.     $Loaction = 'wap/'
  7.  
  8.     if (!emptyempty($Loaction)) 
  9.     { 
  10.         ecs_header("Location: $Loactionn"); 
  11.  
  12.         exit
  13.     } 
  14.  
  15.  
  16. /**   
  17. * 自定义 header 函数,用于过滤可能出现的安全隐患
  18. *   
  19. * @param   string  string  内容   
  20. *   
  21. * @return  void   
  22. **/   
  23. function ecs_header($string$replace = true, $http_response_code = 0)   
  24. {   
  25.     if (strpos($string'../upgrade/index.php') === 0)   
  26.     {   
  27.         echo '<script type="text/javascript">window.location.href="' . $string . '";</script>';   
  28.     }   
  29.     $string = str_replace(array("r""n"), array(''''), $string);   
  30.    
  31.     if (preg_match('/^s*location:/is'$string))   
  32.     {   
  33.         @header($string . "n"$replace);   
  34.    
  35.         exit();   
  36.     }   
  37.    
  38.     if (emptyempty($http_response_code) || PHP_VERSION < '4.3')   
  39.     {   
  40.         @header($string$replace);   
  41.     }   
  42.     else 
  43.     {   
  44.         @header($string$replace$http_response_code);   
  45.     }   
  46. }  

js代码如下:

  1. var isIPhone = /iPhone/i.test(navigator.userAgent), 
  2.  isIPad = /iPad/i.test(navigator.userAgent), 
  3.  isAndroid = /android/i.test(navigator.userAgent); 
  4. var isIOS = isIPhone  || isIPad; 
  5. alert( 
  6.  "iPhone? "+isIPhone+"tr"
  7.  "iPad? "+isIPad+"tr"
  8.  "Android? "+isAndroid+"tr"
  9.  "iOS? "+isIOS 
  10. ); 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论