I have a parameters file in an application using symfony 3.2 console, config and YAML component , and i try to set external Parameters from environment variable in the Service Container parameters.
I create container builder.
$container = new ContainerBuilder();
Am using file locator to locate resources :
$container = new ContainerBuilder();
Loader resolver to load resources
LoaderResolver();
And using load method :
$this->load('parameters.yml');
parameters.yml file:
parameters:
database:
driver: pdo_mysql
host: 127.0.0.1
dbname: dbname
user: env(VAL1)
password: env(VAL2)
Local: us-en
After compiling the container and try to check get values from parameters bag :
$container->getParameterBag()->all()
its return me values like this :
env_VAL1_3ec776edc429c1734ed780a29a0af538 , env_VAL2_3ec776edc429c1734ed780a29a0af538
I think the container can't resolve those values from the environment .
Note : i set the environment variable using :
$ export VAL1='SOME TEXT'
Anyone has an idea why ?
So I've spent some time investigating this 'issue' and here is what I found out...
The only way to get
env(VAL1)
thingy working is to generate the container to PHP file usingPHPDumper
and then use the generated container. There is no other way to make it working because it only resolves environment in that file.In the normal Symfony project there is a generated
var/cache/dev/appDevDebugProjectContainer.php
file. There is methodgetDynamicParameter
which looks like thisIt is the only place where the
env(VAL1)
is evaluated.So for your case the solution is the following.
I used simplified
parameters.yml
:The
export
I did:PHP code:
In the generated code you'll see the following method that do the magic
This solution works fine but looking at it I wonder if this is really needed in your project? What's wrong with
getenv()
?