12 lines
363 B
PHP
12 lines
363 B
PHP
<?php
|
|
function loadEnv($path = __DIR__ . '/../../.env') {
|
|
if (!file_exists($path)) return;
|
|
|
|
$lines = file($path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
|
foreach ($lines as $line) {
|
|
if (str_starts_with(trim($line), '#')) continue;
|
|
list($name, $value) = explode('=', $line, 2);
|
|
$_ENV[trim($name)] = trim($value);
|
|
}
|
|
}
|