piwik/ini 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

piwik/ini

最新稳定版本:3.0.1

Composer 安装命令:

composer require piwik/ini

包简介

无描述信息

README 文档

README

Read and write INI configurations.

Build Status Latest Version

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:
  • works even if parse_ini_file() or parse_ini_string() is disabled in php.ini by 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 

统计信息

  • 总下载量: 444.58k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 53
  • 点击次数: 3
  • 依赖项目数: 15
  • 推荐数: 0

GitHub 信息

  • Stars: 50
  • Watchers: 19
  • Forks: 25
  • 开发语言: PHP

其他信息

  • 授权协议: LGPL-3.0
  • 更新时间: 2026-01-03

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固