config = require $configFile; } /** * 添加配置 * @param string $name * @param string $value */ public function set($name, $value) { // 组合为数组 $config = [ $name => $value ]; // 与原有的配置项合并 $this->config = array_merge($this->config, $config); } /** * 获取配置 * @param string $name * @return array|mixed * @throws \Exception */ public function get($name = '') { // 加载用户配置文件 $module = Request::instance()->module(); $file = APP_PATH . $module . '/config/config.php'; if (!isset(self::$files[$file])) { if (file_exists($file)) { $config = require $file; // 合并配置项 foreach ($config as $key => $value) { if (array_key_exists($key, $this->config)) { $this->config[$key] = array_merge($this->config[$key], $config[$key]); } else { $this->config[$key] = $value; } } 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]); } }