码迷,mamicode.com
首页 > 其他好文 > 详细

低浏览器版本提示!

时间:2017-09-27 00:42:38      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:ext   ofo   htm   text   nbsp   一段   doctype   use   cat   

浏览器版本太低了,在兼容上存在很大的问题,调起来比较麻烦;在网上搜了一段,可以用(感谢原作者?)。

$agent = $_SERVER[‘HTTP_USER_AGENT‘];

if(strpos($agent,"comFront") || strpos($agent,"iPhone") || strpos($agent,"MIDP-2.0") || strpos

($agent,"Opera Mini") || strpos($agent,"UCWEB") || strpos($agent,"Android") || strpos($agent,"Windows 

CE") || strpos($agent,"SymbianOS")){ header("Location:http://www.kissneck.com/m/"); exit;}

//ie6 ie7 ie8

$uarowser=$_SERVER[‘HTTP_USER_AGENT‘];

 

if(strstr($uarowser, ‘MSIE 6‘) || strstr($uarowser, ‘MSIE 7‘) || strstr($uarowser, ‘MSIE 8‘)){

echo ‘

<!DOCTYPE html>

<html lang="zh-cn">

<head>

<meta charset="utf-8">

</head>

 <p class="browserupgrade">您的浏览器版本太低请到<a href="http://browsehappy.com">这里<a>升级,以获得最佳体验</p>

 <style type="text/css">

    .browserupgrade{

      margin: 0;

      padding: 10px;

      background: #ccc;

      text-align:center;

  }

</style>

</html>

‘;

exit;//全面停止支持

}

低浏览器版本提示!

标签:ext   ofo   htm   text   nbsp   一段   doctype   use   cat   

原文地址:http://www.cnblogs.com/lc-hj/p/7599472.html

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