controller); $controllerClass = new $controller; if (($controllerClass instanceof BaseAdminController) === false) { throw new ControllerExtendException($controller, '404'); } } catch (ClassNotFoundException $e) { throw new HttpException(404, 'controller not exists:' . $e->getClass()); } //创建控制器对象 $request->controllerObject = new $controller; return $handler($request); } }