繁体   English   中英

多文件上传codeigniter

[英]multiple file upload codeigniter

如何在Codeigniter中上传多个文件

<input type="file" name="pic[]">
<input type="file" name="pic[]">
<input type="file" name="pic[]">

我该如何上传?

使用do_upload函数

您可以上传任意数量的文件

$config['upload_path'] = 'upload/Main_category_product/';
$path=$config['upload_path'];
$config['allowed_types'] = 'gif|jpg|jpeg|png';
$config['max_size'] = '1024';
$config['max_width'] = '1920';
$config['max_height'] = '1280';
$this->load->library('upload');

foreach ($_FILES as $key => $value)
{
     if (!empty($key['name']))
     {
         $this->upload->initialize($config);
         if (!$this->upload->do_upload($key))
         {
             $errors = $this->upload->display_errors();
             flashMsg($errors);    
         }
         else
         {
             // Code After Files Upload Success GOES HERE
         }
     }
}

您可以看到没有名称属性。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM