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