phplibrary/src/config.php
2017-02-09 14:57:40 +03:00

8 lines
161 B
PHP

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