發表日期:2018-06 文章編輯:小燈 瀏覽次數:3023
配置文件配置在caches/configs/目錄下。
配置文件調用:使用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');
日期:2018-06 瀏覽次數:3278
日期:2018-06 瀏覽次數:3121
日期:2018-06 瀏覽次數:3170
日期:2018-06 瀏覽次數:3151
日期:2018-06 瀏覽次數:2969
日期:2018-06 瀏覽次數:3127
日期:2018-06 瀏覽次數:2980
日期:2018-06 瀏覽次數:3121
日期:2018-06 瀏覽次數:3238
日期:2018-06 瀏覽次數:3022
日期:2018-06 瀏覽次數:2793
日期:2018-06 瀏覽次數:2829
日期:2018-06 瀏覽次數:2786
日期:2018-06 瀏覽次數:2507
日期:2018-06 瀏覽次數:2764
日期:2018-06 瀏覽次數:2601
日期:2018-06 瀏覽次數:2509
日期:2018-06 瀏覽次數:2697
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.