好的......
现在我需要从我的配置文件中获取一些参数:app / config / config.yml
我无法将所有参数定义为服务的参数...
此外,我不想通过我接触到的所有类传递actionController(类似于AppKernel的对象)...
答案 0 :(得分:2)
您是否尝试使用解析器和转储程序:
use Symfony\Component\Yaml\Dumper;
use Symfony\Component\Yaml\Parser;
private function readconfigFile(){
$configFile = $baseUrl.'/config/config.yml';
$yaml = new Parser();
$configArray = $yaml->parse(file_get_contents($configFile));
$readValue = $configArray['doctrine']['orm']['entity_managers'];
return $readValue;
}