Nicolas Grekas 1658a4d34d Merge branch '7.3' into 7.4
* 7.3:
  [Cache] Fix accepting named closures as early-expiration callbacks
  [Mime] Update mime types
  [Yaml] Align unquoted multiline scalar parsing with spec for comments
  work around limitation in JsonResponse when the data is null
  do not use recipient phone numbers as sender e-mail addresses
  [Dotenv] DotenvDumpCommand cannot be internal
2025-11-16 11:14:42 +01:00
2025-11-16 11:14:42 +01:00
2025-07-10 10:14:14 +02:00
2017-01-12 08:39:44 -08:00
2025-06-02 16:13:49 +02:00
2025-07-10 10:14:14 +02:00
2023-01-24 15:02:46 +01:00
2025-07-31 11:31:17 +02:00

Dotenv Component

Symfony Dotenv parses .env files to make environment variables stored in them accessible via $_SERVER or $_ENV.

Getting Started

composer require symfony/dotenv

Usage

For an .env file with this format:

YOUR_VARIABLE_NAME=my-string
use Symfony\Component\Dotenv\Dotenv;

$dotenv = new Dotenv();
$dotenv->load(__DIR__.'/.env');

// you can also load several files
$dotenv->load(__DIR__.'/.env', __DIR__.'/.env.dev');

// overwrites existing env variables
$dotenv->overload(__DIR__.'/.env');

// loads .env, .env.local, and .env.$APP_ENV.local or .env.$APP_ENV
$dotenv->loadEnv(__DIR__.'/.env');

// Usage with $_ENV
$envVariable = $_ENV['YOUR_VARIABLE_NAME'];

// Usage with $_SERVER
$envVariable = $_SERVER['YOUR_VARIABLE_NAME'];

Resources

Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:32:32.195Z
Readme MIT 770 KiB
Languages
PHP 100%