PHP 클래스 c, kirby

상속: use trait t
파일 보기 프로젝트 열기: bastianallgeier/kirby 1 사용 예제들

공개 메소드들

메소드 설명
get ( string $key = null, mixed $default = null ) : mixed Gets a config value by key
load ( string $file ) : array Loads an additional config file Returns the entire configuration array
set ( string $key, mixed $value = null ) Sets a config value by key

메소드 상세

get() 정적인 공개 메소드

Gets a config value by key
static public get ( string $key = null, mixed $default = null ) : mixed
$key string The key to look for. Pass false to get the entire config array
$default mixed The default value, which will be returned if the key has not been found
리턴 mixed The found config value

load() 정적인 공개 메소드

Loads an additional config file Returns the entire configuration array
static public load ( string $file ) : array
$file string The path to the config file
리턴 array The entire config array

set() 정적인 공개 메소드

Sets a config value by key
static public set ( string $key, mixed $value = null )
$key string The key to define
$value mixed The value for the passed key