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