exan / config
1.0.0
2023-05-26 14:29 UTC
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.17
- phpunit/phpunit: ^10.1
This package is auto-updated.
Last update: 2024-09-26 17:42:40 UTC
README
一个简单的PHP配置文件处理包。
配置键可用于执行其他PHP文件。请小心,不要在配置键附近信任用户输入。
安装
composer require exan/config
用法
/** * -- src * ---- config * ------ database.php * ---- index.php */ # src/config/database.php return [ 'host' => 'localhost', 'name' => 'my_database', 'port' => 1337, ]; # src/index.php $config = new Exan\Config\Config(__DIR__ . '/config'); $config->get('database.host', 'my-default-value'); // 'localhost'