phplibrary/src/config.php
2021-02-22 14:07:51 +03:00

9 lines
183 B
PHP

<?php
function loadConfig($filename) {
$settings = null;
if (@include($filename)) {
return $settings;
}
throw new Exception("config $filename not found");
}