Конфигурация пользовательской загрузки Codeigniter

У меня небольшая проблема. У меня есть настраиваемый файл конфигурации для загрузки. Я хочу загрузить настройки без их переопределения.

Хорошо, моя конфигурация выглядит так:

config.php

$config['upload_path'] = 'tmp/'; $config['allowed_types'] = 'zip'; $config['file_name'] = ''; $config['max_size'] = ''; $config['encrypt_name'] = false; $config['remove_spaces'] = true; 

контроллер

 // Here is my problem $config[] // How to load settings from config.php without again defining $config array $config['upload_path'] = $this->config->item('upload_path'); $config['allowed_types'] = $this->config->item('allowed_types'); $config['file_name'] = $this->config->item('file_name'); $config['max_size'] = $this->config->item('max_size'); $config['encrypt_name'] = $this->config->item('encrypt_name'); $config['remove_spaces'] = $this->config->item('remove_spaces'); $this->load->library('upload',$config); if(!$this->upload->do_upload()) { $this->session->set_flashdata('error', $this->upload->display_errors()); redirect('extension/'); } 

Я хочу обойти переопределение $ config ['test] = $ this-> config-> item (' test ');

Это невозможно?