dotenv implementation cont

This commit is contained in:
2025-05-23 13:11:51 +02:00
parent a103c5e272
commit fb1407af3f
16 changed files with 78 additions and 38 deletions

7
testenv.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
require_once __DIR__ . '/vendor/autoload.php';
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->load();
echo "HOST: " . $_ENV['HOST'];