我正在使用CodeIgniter,我想加载位于外部文件夹中的一个或多个配置文件,由不同的CI安装共享。 有可能吗?
我尝试扩展Loader类,并调用新方法: $ this - >加载 - > external_config(“MY \ EXTERNAL \ PATH”);
加载成功,但我无法检索控制器中的配置项,因为在MY_Loader类中,core \ Loader配置属性不可见,我无法将其与新加载的值合并。
这是我的代码:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class MY_Loader extends CI_Loader {
/**
* List of all loaded config files
*
* @var array
*/
var $is_config_loaded = array();
/**
* List of all loaded config values
*
* @var array
*/
//var $ext_config = array();
function __construct(){
parent::__construct();
}
/**
* Loads an external config file
*
* @param string
* @param bool
* @param bool
* @return void
*/
public function external_config($file = '', $use_sections = FALSE, $fail_gracefully = FALSE)
{
$file = ($file == '') ? 'config' : str_replace('.php', '', $file);
$found = FALSE;
$loaded = FALSE;
$check_locations = defined('ENVIRONMENT')
? array(ENVIRONMENT.'/'.$file, $file)
: array($file);
foreach ($check_locations as $location)
{
$file_path = $file.'.php';
if (in_array($file_path, $this->is_config_loaded, TRUE))
{
$loaded = TRUE;
continue 2;
}
if (file_exists($file_path))
{
$found = TRUE;
break;
}
}
if ($found === FALSE)
{
if ($fail_gracefully === TRUE)
{
return FALSE;
}
show_error('The configuration file '.$file.'.php does not exist.');
}
else{
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.');
}
if ($use_sections === TRUE)
{
if (isset($this->ext_config[$file]))
{
$this->ext_config[$file] = array_merge($this->ext_config[$file], $config);
}
else
{
$this->ext_config[$file] = $config;
}
}
else
{
$this->ext_config = array_merge($this->ext_config, $config);
}
$this->is_config_loaded[] = $file_path;
unset($config);
$loaded = TRUE;
log_message('debug', 'Config file loaded: '.$file_path);
}
return TRUE;
}
}
我在core \ Config.php中找到了一个属性 var $ _config_paths = array(APPPATH);
使用路径查找配置文件。 如何在没有核心classe代码的情况下添加数组的路径? 有任何想法吗? 非常感谢!!!
答案 0 :(得分:1)
CodeIgniter假设有关正在加载的配置文件,其位置,文件扩展名等。您可以加载其他文件:来自同一目录(支持似乎仅限于此使用方案)。
但是,您可以(查看章节https://ellislab.com/codeigniter/user-guide/libraries/config.html(设置配置项))迭代文件值并将其设置为
(todo:添加一些检查,如果文件存在,可读,没有解码错误等)
$myConfigValues = json_decode(file_get_contents($configKeyValuesFromOuterSpace));
foreach($myConfigValues as $key => $value){
$CI->config->set_item('item_name', 'item_value');
}
对于配置对象的曝光,在装载程序中,您可以使用代码点火器单例实例检索方法,或多或少地以微妙的方式检查其公共部分:
$CI =& get_instance();
die(print_r($CI->config,true));
这将是一个CI_Config对象。您也可以创建一个MY_Config扩展名。