CakeFest 2024: The Official CakePHP Conference

Yaconf::get

(PECL yaconf >= 1.0.0)

Yaconf::getRetrieve a item

Beschreibung

public static Yaconf::get(string $name, mixed $default_value = NULL): mixed

Parameter-Liste

name

Configuration key, the key looks like "filename.key", or "filename.sectionName,key".

default_value

if the key doesn't exists, Yaconf::get will return this as result.

Rückgabewerte

Returns configuration result(string or array) if the key exists, return default_value if not.

Beispiele

Beispiel #1 INI()example

;filenmame foo.ini, placed in directory which is yaconf.directoy
[SectionA]
;key value pair
key=val
;hash[a]=val
hash.a=val
;arr[0]=val
arr.0=val
;or
arr[]=val

;SectionB inherits SectionA
[SectionB:SectionA]
;override configuration key in SectionA
key=new_val

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

php7 -r 'var_dump(Yaconf::get("foo.SectionA.key"));'
//string(3) "val"

php7 -r 'var_dump(Yaconf::get("foo.SectionB.key"));'
//string(7) "new_val"

php7 -r 'var_dump(Yaconf::get("foo")["SectionA"]["hash"]);'
//array(1)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top