What does $_ENV mean?
- An array of environment variables
- A global constant
- A reserved keyword
- A global function
In PHP, $_ENV is an array that contains the values of environment variables passed to the script. It provides access to environment-specific information. Learn more: http://php.net/manual/en/reserved.variables.environment.php
Loading...
Related Quiz
- Is multiple inheritance supported in PHP?
- The $_POST superglobal in PHP is often used to handle form data.
- If you try to use a foreach loop on a non-array variable in PHP, it will result in a ______.
- A common use case for Form Handling in PHP is to ______.
- In PHP, a number with a decimal point or an exponential form is considered a float.