Files
MVE/app/helpers/env.php
2025-05-05 11:03:01 -06:00

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);
}
}