在多个上传表单代码点火器 2.0 中更改输入名称


change the input name at multiple upload form codeigniter 2.0

我尝试将"userfile"名称更改为表单中的输入名称,从使用 CodeIgniter 2.0 作为问题的最佳答案的多个文件上传(数组)中,但它不起作用。

function do_upload()
{
$this->load->library('upload');
$files = $_FILES;
$cpt = count($_FILES['userfile']['name']);
for($i=0; $i<$cpt; $i++)
{
    $_FILES['imageoption']['name']= $files['imageoption']['name'][$i];
    $_FILES['imageoption']['type']= $files['imageoption']['type'][$i];
    $_FILES['imageoption']['tmp_name']= $files['imageoption']['tmp_name'][$i];
    $_FILES['imageoption']['error']= $files['imageoption']['error'][$i];
    $_FILES['imageoption']['size']= $files['imageoption']['size'][$i];    

$this->upload->initialize($this->set_upload_options());
$this->upload->do_upload();

  }
}
private function set_upload_options()
{
//  upload an image options
  $config = array();
  $config['upload_path'] = './Images/';
  $config['allowed_types'] = 'gif|jpg|png';
  $config['max_size']      = '0';
  $config['overwrite']     = FALSE;
  return $config;
}

这是 HTML 表单:

<?php echo $errors;?>
<?php echo form_open_multipart('tryout/guru/do_upload');?>
<div id="Question1">
Image Question       
  <input type="file" name="imagequestion[]" size="20"  />
Image Option
  <input type="file" name="imageoption[]" size="20"  />
  <input type="file" name="imageoption[]" size="20"  />
</div>
<div id="Question2">
Image Question       
  <input type="file" name="imagequestion[]" size="20"  />
Image Option
  <input type="file" name="imageoption[]" size="20"  />
  <input type="file" name="imageoption[]" size="20"  />
</div>
  <br /><br />
  <input type="submit" name="submit" value="upload" />
</form>

我想为imagequestion使用不同的名称进行多次上传,imageoption一次提交。有什么办法吗?

您也可以尝试在此处更改它:

$cpt = count($_FILES['imageoption']['name']);

现在$i等于$cpt,因为$cpt返回 0。所以你的 for 循环在开始之前就结束了。

还要确保您的输入具有:

"multiple name ='imageoption[]'" 

我看到你在呼应$errors...这在显示什么吗?确保将错误传递给视图,就像链接中所示:

$error['error'] = $this->upload->display_errors();
$this->load->view('pages/uploadform', $error);

最好编辑您的第一个答案,而不是发布新答案来真正提出相同的问题。