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