(PECL yaconf >= 1.0.0)
Yaconf::get — 检索项目
name
配置键,键看起来像 "filename.key" 或 "filename.sectionName,key"。
default_value
如果键不存在,Yaconf::get 将返回此结果。
如果键存在,则返回配置结果(字符串或数组),否则返回 default_value。
示例 #1 INI() 示例
;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
上面的示例将输出类似于
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)