25 lines
490 B
PHP
25 lines
490 B
PHP
<?php
|
|
namespace app\admin\controller;
|
|
|
|
use app\common\controller\Common;
|
|
|
|
/**
|
|
* ie提示页面控制器
|
|
* @package app\admin\controller
|
|
*/
|
|
class Ie extends Common
|
|
{
|
|
/**
|
|
* 显示ie提示
|
|
* @author 蔡伟明 <314013107@qq.com>
|
|
* @return mixed
|
|
*/
|
|
public function index(){
|
|
// ie浏览器判断
|
|
if (get_browser_type() == 'ie') {
|
|
return $this->fetch();
|
|
} else {
|
|
$this->redirect('admin/index/index');
|
|
}
|
|
}
|
|
} |