arc/config

Ariadne 组件库:分层配置管理组件

3.0 2020-02-23 13:03 UTC

This package is auto-updated.

Last update: 2024-09-10 23:24:19 UTC


README

Scrutinizer Code Quality Latest Stable Version Total Downloads Latest Unstable Version License

PHP 的灵活组件库

Ariadne 组件库是从 Ariadne 网络应用程序框架和内容管理系统衍生出来的[ http://www.ariadne-cms.org/ ]

arc/config 包含

  • config: 一个通用的配置类,允许您通过路径覆盖配置属性。

代码示例

	\arc\config::configure('color', 'blue');
	$color = \arc\config::cd('/parent/child/')->acquire('color');
	// => 'blue'

并且

	\arc\config::cd('/parent/')->configure('color', 'red');
	$color = \arc\config::cd('/parent/child/')->acquire('color');
	// => 'red'