|
config类的load方式是载入配置文件的吧?
PHP复制代码
include($file_path);
if ( ! isset($config) OR ! is_array($config))
{
if ($fail_gracefully === TRUE)
{
return FALSE;
}
show_error ('Your '.$file_path.' file does not appear to contain a valid configuration array.');
} 复制代码
载入进来配置文件后会判断config数组有没有被设置或者是不是数组,我看除了config/config.php里的数组是config命名的变量数组之外config/文件夹下的其它配置文件都不是啊,这样载入进来不就错了吗
|
|