在本文中,我们将深入研究有关使用 CodeIgniter 中的单个元素进行多个文件上传的查询。通过评估提供的表单、控制器、文件上传方法以及遇到的问题,我们将剖析并解决此问题,以提供全面的解决方案。
最初的问题源于文件上传方法与传入的文件输入。 @Denmark 提出的调整通过将表单输入名称从“images”重新分配为“images[]”以匹配多个文件选择,恰当地纠正了这种差异。
private function upload_files($path, $title, $files) { $config = array( 'upload_path' => $path, 'allowed_types' => 'jpg|gif|png', 'overwrite' => 1, ); $this->load->library('upload', $config); $images = array(); foreach ($files['name'] as $key => $image) { $_FILES['images[]']['name']= $files['name'][$key]; $_FILES['images[]']['type']= $files['type'][$key]; $_FILES['images[]']['tmp_name']= $files['tmp_name'][$key]; $_FILES['images[]']['error']= $files['error'][$key]; $_FILES['images[]']['size']= $files['size'][$key]; $fileName = $title . '_' . $image; $images[] = $fileName; $config['file_name'] = $fileName; $this->upload->initialize($config); if ($this->upload->do_upload('images[]')) { $this->upload->data(); } else { return false; } } return $images; }
按照此修改后的方法,您可以在 CodeIgniter 中使用单个输入元素成功上传多个文件。
以上是如何在CodeIgniter中使用单个输入字段实现多个文件上传?的详细内容。更多信息请关注PHP中文网其他相关文章!