mayoturis/properties-ini
Composer 安装命令:
composer require mayoturis/properties-ini
包简介
Getting and setting configuration values in ini (or java .properties) files
README 文档
README
Allows to get and set configuration variables stored in ini-like (or java .properties) files
Installation with composer
composer require mayoturis/properties-ini
or
{ "require": { "mayoturis/properties-ini": "1.0" } }
Usage
####Basic Example
$config = Mayoturis\Properties\RepositoryFactory::make('path_to_configuration_file'); $config->get('DB_PASSWORD'); $config->set('DB_STRICT_MODE', true);
File format
Reader can load these types of lines
DB_HOST=localhost // loaded as string 'localhost'
DB_USERNAME="user" // string 'user'
DB_PASSWORD = 'password' // string 'password'
DB_STRICT_MODE=true // boolean true
FLOAT_VALUE=1.1 // float 1.1
INT_VALUE=1 // int 1
NULL_VALUE=null // null
# comment // won't be loaded
; comment // won't be loaded
//comment // won't be loaded
Comment has to be at the start of the line
Example of file loading
name="John"
surname=Doe
age=25
salary=12.5
married=false
wife=null
Will be loaded as
[ "name" => "John", "surname" => "Doe", "age" => 25, "salary" => 12.5 "married" => false, "wife" => null ]
Saving configuration
When saving the configuration, file format will be respected. Therefore empty lines and comments will preserved. New values (NOT only changed) will be placed at the end of the file
Further examples
Get all configuration values
$config = Mayoturis\Properties\RepositoryFactory::make('path_to_configuration_file'); $configurationArray = $config->all();
Setting value
// file .env
name=John
surname="Doe"
# In 2015
age=25
// file index.php $config = Mayoturis\Properties\RepositoryFactory::make(__DIR__ . '/.env'); $config->set('name', 'Johny'); $config->set('age', 35);
// file .env after
name=Johny
surname="Doe"
# In 2015
age=35
Save all configuration values
$configArray = [ "username" => "user", "password" => "password" ]; $config = Mayoturis\Properties\RepositoryFactory::make('path_to_configuration_file'); $config->setAll($configArray);
Notice: setAll function will override all configuration values. Previous values will be lost.
mayoturis/properties-ini 适用场景与选型建议
mayoturis/properties-ini 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 118.79k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2015 年 11 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「configuration」 「ini」 「config」 「properties」 「.properties」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mayoturis/properties-ini 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mayoturis/properties-ini 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mayoturis/properties-ini 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Configuration component
Framework Agnostic Configuration Library
A Zend Framework module to quickly and easily set PHP settings.
The slick/configuration component provides an easy-to-use solution for managing configuration files in your PHP applications.
Load configuration files the easy way. This configuration loader supports PHP, INI, JSON, XML, YAML and NEON file extensions.
Utils to load, parse and work with configuration on Mezzio projects
统计信息
- 总下载量: 118.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 16
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-16