Warning: Undefined array key "HTTP_ACCEPT_LANGUAGE" in /www/wwwroot/01xj.net/wp-content/plugins/wp-ue/main.php on line 13
phpcms v9 调用配置文件 – 我的空间 · 我做主

phpcms v9 调用配置文件

配置文件配置在caches/configs/目录下。

配置文件有:
1、system.php 系统配置文件,常用的配置如:网站路径、模板配置、附件相关配置等
2、database.php 数据库配置文件。
3、version.phpp phpcms v9版本信息
4、route.php 路由配置文件 也就是默认的 url
5、modules.php 模型文件
配置文件调用:使用 load_config方法

/**
* 加载配置文件
* @param string $file 配置文件
* @param string $key 要获取的配置荐
* @param string $default 默认配置。当获取配置项目失败时该值发生作用。
* @param boolean $reload 强制重新加载。
*/
public static function load_config($file, $key = ”, $default = ”, $reload = false) {
static $configs = array();
if (!$reload && isset($configs[$file])) {
if (empty($key)) {
return $configs[$file];
} elseif (isset($configs[$file][$key])) {
return $configs[$file][$key];
} else {
return $default;
}
}
$path = CACHE_PATH.’configs’.DIRECTORY_SEPARATOR.$file.’.php’;
if (file_exists($path)) {
$configs[$file] = include $path;
}
if (empty($key)) {
return $configs[$file];
} elseif (isset($configs[$file][$key])) {
return $configs[$file][$key];
} else {
return $default;
}
}
示例:
调用系统配置中的附件路径
$upload_url = pc_base::load_config(‘system’,’upload_url’);

您可能还喜欢...

发表回复