hnschat-web/etc/config.php

6 lines
146 B
PHP
Raw Normal View History

2024-04-17 08:26:30 +10:00
<?php
$json = json_decode(file_get_contents(__DIR__."/config.json"), true);
foreach ($json as $key => $value) {
$GLOBALS[$key] = $value;
}
?>