phplibrary/core/config.php

8 lines
165 B
PHP

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