$request
$request : \think\Request
Request实例
控制器基础类
$request : \think\Request
Request实例
$app : \think\App
应用实例
$batchValidate : bool
是否批量验证
$middleware : array
控制器中间件
<?php
namespace app\admin\controller;
use app\BaseController;
class Index extends BaseController
{
public function index()
{
return '<h1>多应用模式启动</h1>';
}
}