toolkit / file-parse
v1.0.4
2019-02-04 01:24 UTC
Requires
- php: >7.1.0
- toolkit/str-utils: ~1.0
Suggests
- inhere/console: a lightweight php console application library.
- inhere/php-validate: Very lightweight data validate tool
README
PHP的一些有用的文件解析工具。
ini
, json
, yml
格式的文件解析
- 支持去除 json 文件的注释,即使有注释也不会导致解析失败
- 支持特殊关键字
extend
继承另一个文件的内容import
导入另一个文件的内容reference
参考另一个key的值 待定
例如在 yml 文件(其他格式的文件类似)可以这样:
// will parse special keywords
extend: ../parent.yml
debug: true
db: import#../db.yml
cache:
debug: reference#debug
安装
composer require toolkit/file-parse
许可证
MIT