$value ]; // 与原有的配置项合并 $this->config = array_merge($this->config, $config); } /** * 获取配置 * @param string $name * @return array|mixed * @throws \Exception */ public function get($name = '') { // 加载的文件名 $module = Register::get('Router')->module; $file = BASEDIR . '/' . APPNS . '/' . $module . '/config/config.php'; if (! isset(self::$files[$file])) { if (file_exists($file)) { $config = require $file; // 与原有的配置项合并 $this->config = array_merge($this->config, $config); self::$files[$file] = true; } } if (empty($this->config) || ! isset($this->config) || ! $this->config || ! isset($this->config[$name]) || ! $this->config[$name] ) { return []; } return $this->config[$name]; } /** * 从配置中删除某项 * * @param string $name */ public function _unset($name) { unset($this->config[$name]); } }