By Bobby Iliev
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!
Accepted Answer
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:
$your_var = getenv('TEST_VAR');
echo $your_var;
The same would go for JavaScript functions with the process
core Node module that gives you access to the environment variables thanks to the env
property (eg: process.env['your_env']
).
Hope that this helps!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.