我尝试在doctrine配置中调用config_dev.yml,config_preprod.yml ...中的配置。
我有例如:
doctrine:
dbal:
connexions:
test:
driver : ...
host: 1.1.1.1
port: 1111
...
在我现在拥有的控制器中:
$output = file_get_contents('http://1.1.1.1:1111/...', 0, $var)
我想用我的配置doctrine.dbal.connexions.test替换http:...,它可能吗?
答案 0 :(得分:2)
您可以使用
阅读配置$this->getParameter('doctrine.dbal.connexions.test');
https://symfony.com/doc/current/service_container/parameters.html