Ie.php 1.1 KB

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