AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
### 定义中间件 ``` php think make:middleware 中间件的名称 这个指令会 application/http/middleware目录下面生成一个中间件文件 ``` ``` namespace app\http\middleware; class checkLogin { public function handle($request, \Closure $next) { echo "你好 "; return $next($request); } } ``` ``` class Index extends Controller { protected $middleware = [ 'checkLogin' ]; public function index() { return 'hello, tp5.1 '; } } ```