У меня проблемы с библиотекой $ this-> load-> ('upload'); если я вызываю его в контроллере, он работает просто отлично, но когда я помещаю его в модель, он выдает ошибку «Вызов функции-члена do_upload () для необъекта»
Вот мой код загрузки.
function upload_file_model(){
if(isset($_FILES['upPhoto'])){
$upMsg = "";
$uploadPath;
$uploadDirectory;
$this->uploadPath = realpath(APPPATH . DIRECTORY_SEPARATOR . "root");
$this->uploadDirectory = $this->input->post('txt_current_directory');
$this->uploadDirectory = explode("/", $this->uploadDirectory);
$this->uploadDirectory = implode(DIRECTORY_SEPARATOR, $this->uploadDirectory);
$this->upload = $this->uploadPath . DIRECTORY_SEPARATOR . $this->uploadDirectory;
for($i = 0;$i<count($_FILES['upPhoto']['name']);$i++){
$_FILES['userfile']['name'] = $_FILES['upPhoto']['name'][$i];
$_FILES['userfile']['type'] = $_FILES['upPhoto']['type'][$i];
$_FILES['userfile']['tmp_name'] = $_FILES['upPhoto']['tmp_name'][$i];
$_FILES['userfile']['error'] = $_FILES['upPhoto']['error'][$i];
$_FILES['userfile']['size'] = $_FILES['upPhoto']['size'][$i];
$config = array(
'upload_path' => $this->upload,
'allowed_types' => 'gif|jpg|png|jpeg|doc|csv',
'max_size' => '10000',
'max_width' => '10000',
'max_height' => '10000',
'overwrite' => false,
'file_name' => 'test_' + $i
);
$this->load->library('upload', $config);
if($this->upload->do_upload()){
$this->upMsg .= $_FILES['upPhoto']['name'][$i] . " Uploaded. <br>";
}else{
$this->upMsg .= $_FILES['upPhoto']['name'][$i] . " was not Uploaded. <br> . ERROR : " . $this->upload->display_errors();
}
}
// echo $this->upMsg;
$this->status = TRUE;
$this->msg = $this->upMsg;
}else{
// echo "FALSE";
$this->status = FALSE;
$this->msg = "ERROR : You did not select a file to upload.";
}
return $this->respond();
}
Большая часть кода взята по этой ссылке Codeigniter несколько файлов загружает расширение файла messes ~ by phpx
Я только что изменил некоторые из них.