Ie.php 954 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 海豚PHP框架 [ DolphinPHP ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://dolphinphp.com
  8. // +----------------------------------------------------------------------
  9. namespace app\admin\controller;
  10. use app\common\controller\Common;
  11. /**
  12. * ie提示页面控制器
  13. * @package app\admin\controller
  14. */
  15. class Ie extends Common
  16. {
  17. /**
  18. * 显示ie提示
  19. * @author 蔡伟明 <314013107@qq.com>
  20. * @return mixed
  21. */
  22. public function index(){
  23. // ie浏览器判断
  24. if (get_browser_type() == 'ie') {
  25. return $this->fetch();
  26. } else {
  27. $this->redirect('admin/index/index');
  28. }
  29. }
  30. }