PHP 클래스 Habari\Config

Configuration registry class
파일 보기 프로젝트 열기: habari/system

보호된 프로퍼티들

프로퍼티 타입 설명
$prefix
$registry Registry of configuration data

공개 메소드들

메소드 설명
clear ( string $key ) : void Unset data
exists ( string $key ) : boolean See if a key exists
get ( string $key, null $default = null ) : mixed Fetch data from registry
set ( string $key, mixed $val ) : boolean Set data in registry

비공개 메소드들

메소드 설명
__construct ( ) Static; private constructor

메소드 상세

clear() 공개 정적인 메소드

Unset data
public static clear ( string $key ) : void
$key string key name
리턴 void

exists() 공개 정적인 메소드

See if a key exists
public static exists ( string $key ) : boolean
$key string key name
리턴 boolean

get() 공개 정적인 메소드

Fetch data from registry
public static get ( string $key, null $default = null ) : mixed
$key string key name
$default null
리턴 mixed (empty object on invalid key)

set() 공개 정적인 메소드

Note: arrays become objects for easy fetching
public static set ( string $key, mixed $val ) : boolean
$key string key name
$val mixed value to store
리턴 boolean true if new key, false if key already exists

프로퍼티 상세

$prefix 보호되어 있는 정적으로 프로퍼티

protected static $prefix

$registry 보호되어 있는 정적으로 프로퍼티

Registry of configuration data
protected static $registry