piwik/ini
最新稳定版本:3.0.1
Composer 安装命令:
composer require piwik/ini
包简介
无描述信息
README 文档
README
Read and write INI configurations.
Installation
composer require matomo/ini
Why?
PHP provides a parse_ini_file() function to read INI files.
This component provides the following benefits over the built-in function:
- allows one to write INI files
- classes can be used with dependency injection and mocked in unit tests
- throws exceptions instead of PHP errors
- better type supports:
- parses boolean values (
true/false,on/off,yes/no) to real PHP booleans (instead of strings"1"and"") - parses null to PHP
null(instead of an empty string)
- parses boolean values (
- works even if
parse_ini_file()orparse_ini_string()is disabled inphp.iniby falling back on an alternate implementation (can happen on some shared hosts)
Usage
Read
$reader = new IniReader(); // Read a string $array = $reader->readString($string); // Read a file $array = $reader->readFile('config.ini');
Troubleshooting
unexpected BOOL_TRUE in Unknown on line X
The PHP default implementation of read_ini_file does not allow bool-ish values as keys in when reading ini files.
Data like yes = "Yes" results in the following error:
Syntax error in INI configuration: syntax error, unexpected BOOL_TRUE in Unknown on line 6 To prevent from that error, please switch to the custom ini reader implementation by using:
$reader = new IniReader(); $reader->setUseNativeFunction(false);
Write
$writer = new IniWriter(); // Write to a string $string = $writer->writeToString($array); // Write to a file $writer->writeToFile('config.ini', $array);
License
The Ini component is released under the LGPL v3.0.
Contributing
To run the unit tests:
vendor/bin/phpunit To run the performance tests:
php vendor/bin/phpbench run tests/PerformanceTest --report=default piwik/ini 适用场景与选型建议
piwik/ini 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 444.58k 次下载、GitHub Stars 达 50, 最近一次更新时间为 2026 年 01 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 piwik/ini 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 piwik/ini 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 444.58k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 53
- 点击次数: 25
- 依赖项目数: 15
- 推荐数: 0
其他信息
- 授权协议: LGPL-3.0
- 更新时间: 2026-01-03