app = $app; $this->request = $this->app->request; // 控制器初始化 $this->initialize(); } // 初始化 protected function initialize() { $this->confModel = new ConfModel(); $configs = $this->confModel->select()->toArray(); $c = array_column($configs, 'conf_value', 'conf_key'); config($c, 'qfshop'); } }