hassankhan/config

支持PHP、INI、XML、JSON和YAML文件的超轻量级配置文件加载器

3.1.0 2022-12-20 19:48 UTC

README

Latest version Software License Build Status Coverage Status Quality Score Total Downloads Gitter

Config是一个文件配置加载器,支持PHP、INI、XML、JSON、YML、属性和序列化文件和字符串。

需求

Config需要PHP 7.4+。

重要:如果您想使用YAML文件或字符串,请在您的composer.json中要求symfony/Yaml组件。

安装

安装Config的推荐方式是通过Composer。

$ composer require hassankhan/config

用法

Config设计得非常简单直观。您可以使用它进行加载、获取和设置操作。

加载文件

可以通过工厂方法load()或直接实例化来创建Config对象。

use Noodlehaus\Config;
use Noodlehaus\Parser\Json;

// Load a single file
$conf = Config::load('config.json');
$conf = new Config('config.json');

// Load values from multiple files
$conf = new Config(['config.json', 'config.xml']);

// Load all supported files in a directory
$conf = new Config(__DIR__ . '/config');

// Load values from optional files
$conf = new Config(['config.dist.json', '?config.json']);

// Load a file using specified parser
$conf = new Config('configuration.config', new Json);

根据文件扩展名或指定的解析器解析和加载文件。如果指定了解析器,它将对所有文件使用。注意,当加载多个文件时,具有重复键的条目将采用最后加载的文件的值

当加载目录时,路径将使用glob,并按名称字母顺序加载文件。

警告:不要包含未经验证的PHP格式的配置。它可能包含并执行恶意代码。

加载字符串

可以通过工厂方法load()或直接实例化,将参数$string设置为true来创建字符串配置。

use Noodlehaus\Config;
use Noodlehaus\Parser\Json;
use Noodlehaus\Parser\Yaml;

$settingsJson = <<<FOOBAR
{
  "application": {
    "name": "configuration",
    "secret": "s3cr3t"
  },
  "host": "localhost",
  "port": 80,
  "servers": [
    "host1",
    "host2",
    "host3"
  ]
}
FOOBAR;

$settingsYaml = <<<FOOBAR
application:
    name: configuration
    secret: s3cr3t
host: localhost
port: 80
servers:
- host1
- host2
- host3

FOOBAR;

$conf = Config::load($settingsJson, new Json, true);
$conf = new Config($settingsYaml, new Yaml, true);

警告:不要包含未经验证的PHP格式的配置。它可能包含并执行恶意代码。

获取值

可以通过三种方式获取值。一种是通过使用get()方法

// Get value using key
$debug = $conf->get('debug');

// Get value using nested key
$secret = $conf->get('security.secret');

// Get a value with a fallback
$ttl = $conf->get('app.timeout', 3000);

第二种方法,就像使用数组一样使用它

// Get value using a simple key
$debug = $conf['debug'];

// Get value using a nested key
$secret = $conf['security.secret'];

// Get nested value like you would from a nested array
$secret = $conf['security']['secret'];

第三种方法,是通过使用all()方法

// Get all values
$data = $conf->all();

设置值

尽管Config支持通过set()或通过数组语法设置值,但通过这种方式进行的任何更改都不会反映回源文件。按照设计,如果您需要更改配置文件,您必须手动进行。

$conf = Config::load('config.json');

// Sample value from our config file
assert($conf['secret'] == '123');

// Update config value to something else
$conf['secret'] = '456';

// Reload the file
$conf = Config::load('config.json');

// Same value as before
assert($conf['secret'] == '123');

// This will fail
assert($conf['secret'] == '456');

保存配置

可以将配置保存回任何支持的格式(除PHP外)的文件中。

$config = Config::load('config.json');

$ini = $config->toString(new Ini()); // Encode to string if you want to save the file yourself

$config->toFile('config.yaml');
$config->toFile('config.txt', new Serialize()); // you can also force the writer

使用默认值

有时在您的项目中,您可能希望使用Config来存储应用程序设置,而不需要文件I/O。您可以通过扩展AbstractConfig类并填充getDefaults()方法来实现这一点

class MyConfig extends AbstractConfig
{
    protected function getDefaults()
    {
        return [
            'host' => 'localhost',
            'port'    => 80,
            'servers' => [
                'host1',
                'host2',
                'host3'
            ],
            'application' => [
                'name'   => 'configuration',
                'secret' => 's3cr3t'
            ]
        ];
    }
}

合并实例

您可能希望合并多个Config实例

$conf1 = Config::load('conf1.json');
$conf2 = Config::load('conf2.json');
$conf1->merge($conf2);

支持的配置文件示例

可以在这里找到简单有效配置文件的示例here

测试

$ phpunit

贡献

有关详细信息,请参阅CONTRIBUTING

安全

如果您发现任何安全相关的问题,请通过电子邮件[email protected]联系,而不是使用问题跟踪器。

致谢

许可证

MIT许可证(MIT)。有关更多信息,请参阅许可证文件