定制 laurent22/konfig 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

laurent22/konfig

Composer 安装命令:

composer require laurent22/konfig

包简介

Simple configuration class with support for cascading file system.

README 文档

README

Simple configuration class for PHP with support for cascading file system.

Installation

Either copy the Konfig.php class or add this to composer.json:

 require {
 	"laurent22/konfig": "dev-master"
 }

Usage

Each config files is a simple PHP file that returns an associative array. For example:

return array(
	'host' => '127.0.0.1',
	'port' => '6543',
	'user' => 'dbadmin',
	'password' => '123456',
);

Assuming this kind of file structure:

config/
	dev/
		database.php
		default.php
	live/
		database.php
		default.php

The following can be used to load the config files:

// Always load the live environment
Konfig::addLookupFolder('config/live');

// But allow overriding the values if we are in development environment:
if (ENV == 'dev') Konfig::addLookupFolder('config/dev');

Then to access the values:

$dbHost = Konfig::get('database', 'host');

$fullDbConfig = Konfig::getGroup('database');

The relevant files are loaded only as needed (if they are not used, nothing gets loaded).

统计信息

  • 总下载量: 144
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-02-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固