13 lines
359 B
PHP
13 lines
359 B
PHP
<?php
|
|
const ORDINAL_ENGLISH = array('first', 'second', 'third', 'fourth', 'fifth', 'sixth', 'seventh', 'eighth', 'ninth', 'tenth');
|
|
$string = file_get_contents("./config.json");
|
|
if ($string === false) {
|
|
die("Can't read config file!");
|
|
}
|
|
$config = json_decode($string,true);
|
|
if ($config === null) {
|
|
die("Config file is not JSON...");
|
|
}
|
|
|
|
?>
|