Hi all,
You can define environment variables in a couple of ways as described in the serverless Functions documentation here:
https://docs.digitalocean.com/products/functions/reference/project-configuration/#environment
Once you’ve defined your environment variables, you can follow the steps here on how to get the value of an environment variable in your PHP serverless Functions.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
If you were to try and use the environment variable directly, eg.
echo $YOUR_VAR
you will get a warning stating that the variable is not defined.You will have to use the builtin
getenv()
PHP function to get the value of the environment variable first, and then use that value in your code:The same would go for JavaScript functions with the
process
core Node module that gives you access to the environment variables thanks to theenv
property (eg:process.env['your_env']
).Hope that this helps!