phplibrary/core/config.php
2016-07-18 15:01:02 +03:00

9 lines
192 B
PHP

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