PHP 클래스 Redaxscript\Config

부터: 2.4.0
저자: Henry Ruhs
상속: extends Singleton
파일 보기 프로젝트 열기: redaxmedia/redaxscript 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_configArray array array of the config
$_configFile string path to config file

공개 메소드들

메소드 설명
clear ( ) clear the config
get ( string $key = null ) : mixed get item from config
init ( string $configFile = null ) init the class
parse ( string $dbUrl = null ) parse from database url
set ( string $key = null, string $value = null ) set item to config
write ( ) : boolean write config to file

메소드 상세

clear() 공개 메소드

clear the config
부터: 3.0.0
public clear ( )

get() 공개 메소드

get item from config
부터: 2.2.0
public get ( string $key = null ) : mixed
$key string key of the item
리턴 mixed

init() 공개 메소드

init the class
부터: 2.4.0
public init ( string $configFile = null )
$configFile string file with config

parse() 공개 메소드

parse from database url
부터: 3.0.0
public parse ( string $dbUrl = null )
$dbUrl string database url to be parsed

set() 공개 메소드

set item to config
부터: 2.2.0
public set ( string $key = null, string $value = null )
$key string key of the item
$value string value of the item

write() 공개 메소드

write config to file
부터: 2.4.0
public write ( ) : boolean
리턴 boolean

프로퍼티 상세

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

array of the config
protected static array $_configArray
리턴 array

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

path to config file
protected static string $_configFile
리턴 string