2012-09-28 67 views
0

我期待在靜態對象的zend框架內創建我自己的yaml文件。我不想替換application.ini文件。在zend框架中使用yaml

我加入裏面CONFIGS以下文件

應用/ reports.yaml

reportInfo: 
    team_a: 
    some_var: some_var 
    some_var_1: some_var1 
    team_b: 
    some_var: some_var 
    some_var_1: some_var1 

如何獲得reportInfo的價值裏面說的指數控制器?

$reportInfo = Zend_Get_YAML ('configs/reports.yaml') // or something similar this is a guess 
print_r($reportInfo); 

回答

0

你試過了什麼?

你可以用Zend_Config_Yaml或sfYaml :: dump或the new yaml component

做這個嘗試在你的控制器:

$config = Zend_Config_Yaml::decode(file_get_contents(
    APPLICATION_PATH . '/configs/reports.yaml', 
)); 
print_r($config); 
+0

它說,它無法找到yaml.php文件? –