<?php
namespace app\index\controller;

use think\Db;
use think\Controller;
class Base extends Controller
{
    public function _initialize(){
        $no_check = array("login","login_check");
        $request = \think\Request::instance();
        echo $request->controller();
        echo $request->module();
        echo $request->action();
    }
}

 

相关文章: