定制 mefworks/config 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mefworks/config

最新稳定版本:v1.1.1

Composer 安装命令:

composer require mefworks/config

包简介

Load configurations from multiple sources.

README 文档

README

Total Downloads Latest Stable Version

mef\Config provides a simple, immutable configuration system.

Example

<?php
$config = (new mef\Config\FileLoader\JsonFileLoader)->loadFile('settings.json');

echo 'The username is: ', $config['database.user'], PHP_EOL;

More complete examples are available in the examples directory.

File Loaders

There are four loaders:

  • mef\Config\FileLoader\IniFileLoader - Loads standard INI files.

  • mef\Config\FileLoader\JsonFileLoader - Loads standard JSON files.

  • mef\Config\FileLoader\PhpFileLoader - Includes a PHP array or callable (that must return an array).

  • mef\Config\FileLoader\YamlFileLoader - Loads standard YAML files (via symfony/yaml).

Each of these loaders returns a mef\Config\ArrayConfig object.

ConfigInterface

The mef\Config\ConfigInterface defines only two methods: get and exists. Both take a string key as the only parameter. If a key does not exist, then a mef\Config\Exception\InvalidKeyException will be thrown.

$config = new ArrayConfig([
  'database' => [
    'user' => 'John'
  ]
]);

if ($config->exists('database') === true) {
  echo $config->get('database')['user'], PHP_EOL;
}

ArrayConfig

The mef\Config\ArrayConfig holds an immutable associative array. As with any configuration object that descends from mef\Config\AbstractConfig, the data can optionally be accessed using dot notation and/or as an array.

echo $config->get('database.user'), PHP_EOL;
echo $config['database']['user'], PHP_EOL;
echo $config['database.user'], PHP_EOL;

CachedConfig

The mef\Config\CachedConfig is a decorator for a ConfigInterface object. It caches the calls to get in a private array. This can be useful so that the common "if exists then get" does not have to resolve the key twice.

MergedConfig

The mef\Config\MergedConfig takes one or more ConfigInterface objects and merges them into a single configuration.

$config = new mef\Config\MergedConfig([$config1, $config2]);

The configurations are passed in the constructor as a single array in ascending priority. i.e., $config2 overrides $config1.

The merging is done such that associative arrays can contain partial overrides. However, indexed based arrays are completely overwritten.

统计信息

  • 总下载量: 11.36k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-07-17

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固