BASE . LOG,
'log_file_id' => $LOG_FILE_ID,
'log_per_date' => true,
]);
$ref_class = 'CoreLibs\Get\ReadEnvFile';
$PAGE_NAME = 'TEST CLASS: READ ENV FILE';
print "";
print "
" . $PAGE_NAME . "";
print "";
print '';
print '' . $PAGE_NAME . '
';
print "ALREADY from config.php: " . \CoreLibs\Debug\Support::printAr($_ENV) . "
";
// test .env in local
$status = \CoreLibs\Get\DotEnv::readEnvFile('.', 'test.env');
print "test.env: STATUS: " . $status . "
";
print "AFTER reading test.env file: " . \CoreLibs\Debug\Support::printAr($_ENV) . "
";
print "";
// __END__