toolkit/file-parse

This package is abandoned and no longer maintained. The author suggests using the toolkit/fsutil package instead.

some file parse tool library of the php

v1.0.4 2019-02-04 01:24 UTC

This package is auto-updated.

Last update: 2020-06-11 11:49:55 UTC


README

License Php Version Latest Stable Version

Some useful file parse utils for the php.

ini, json, yml 格式的文件解析

  • json 文件支持去除注释,即是有注释不会导致解析失败
  • 支持特殊关键字
    • extend 继承另一个文件的内容
    • import 导入另一个文件的内容
    • reference 参考另一个key的值 todo

例如在 yml 文件(其他格式的文件类似)可以这样:

// will parse special keywords
extend: ../parent.yml
debug: true
db: import#../db.yml
cache:
  debug: reference#debug

Install

composer require toolkit/file-parse

License

MIT