123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006~2021 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- declare (strict_types = 1);
- namespace think;
- /**
- * 配置管理类
- * @package think
- */
- class Config
- {
- /**
- * 配置参数
- * @var array
- */
- protected $config = [];
- /**
- * 配置文件目录
- * @var string
- */
- protected $path;
- /**
- * 配置文件后缀
- * @var string
- */
- protected $ext;
- /**
- * 构造方法
- * @access public
- */
- public function __construct(string $path = null, string $ext = '.php')
- {
- $this->path = $path ?: '';
- $this->ext = $ext;
- }
- public static function __make(App $app)
- {
- $path = $app->getConfigPath();
- $ext = $app->getConfigExt();
- return new static($path, $ext);
- }
- /**
- * 加载配置文件(多种格式)
- * @access public
- * @param string $file 配置文件名
- * @param string $name 一级配置名
- * @return array
- */
- public function load(string $file, string $name = ''): array
- {
- if (is_file($file)) {
- $filename = $file;
- } elseif (is_file($this->path . $file . $this->ext)) {
- $filename = $this->path . $file . $this->ext;
- }
- if (isset($filename)) {
- return $this->parse($filename, $name);
- }
- return $this->config;
- }
- /**
- * 解析配置文件
- * @access public
- * @param string $file 配置文件名
- * @param string $name 一级配置名
- * @return array
- */
- protected function parse(string $file, string $name): array
- {
- $type = pathinfo($file, PATHINFO_EXTENSION);
- $config = [];
- switch ($type) {
- case 'php':
- $config = include $file;
- break;
- case 'yml':
- case 'yaml':
- if (function_exists('yaml_parse_file')) {
- $config = yaml_parse_file($file);
- }
- break;
- case 'ini':
- $config = parse_ini_file($file, true, INI_SCANNER_TYPED) ?: [];
- break;
- case 'json':
- $config = json_decode(file_get_contents($file), true);
- break;
- }
- return is_array($config) ? $this->set($config, strtolower($name)) : [];
- }
- /**
- * 检测配置是否存在
- * @access public
- * @param string $name 配置参数名(支持多级配置 .号分割)
- * @return bool
- */
- public function has(string $name): bool
- {
- if (false === strpos($name, '.') && !isset($this->config[strtolower($name)])) {
- return false;
- }
- return !is_null($this->get($name));
- }
- /**
- * 获取一级配置
- * @access protected
- * @param string $name 一级配置名
- * @return array
- */
- protected function pull(string $name): array
- {
- $name = strtolower($name);
- return $this->config[$name] ?? [];
- }
- /**
- * 获取配置参数 为空则获取所有配置
- * @access public
- * @param string $name 配置参数名(支持多级配置 .号分割)
- * @param mixed $default 默认值
- * @return mixed
- */
- public function get(string $name = null, $default = null)
- {
- // 无参数时获取所有
- if (empty($name)) {
- return $this->config;
- }
- if (false === strpos($name, '.')) {
- return $this->pull($name);
- }
- $name = explode('.', $name);
- $name[0] = strtolower($name[0]);
- $config = $this->config;
- // 按.拆分成多维数组进行判断
- foreach ($name as $val) {
- if (isset($config[$val])) {
- $config = $config[$val];
- } else {
- return $default;
- }
- }
- return $config;
- }
- /**
- * 设置配置参数 name为数组则为批量设置
- * @access public
- * @param array $config 配置参数
- * @param string $name 配置名
- * @return array
- */
- public function set(array $config, string $name = null): array
- {
- if (!empty($name)) {
- if (isset($this->config[$name])) {
- $result = array_merge($this->config[$name], $config);
- } else {
- $result = $config;
- }
- $this->config[$name] = $result;
- } else {
- $result = $this->config = array_merge($this->config, array_change_key_case($config));
- }
- return $result;
- }
- }
|