By Bobby
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.
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.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
