在Codeigniter中上传多个文件

在Codeigniter中上传多个文件,第1张

在Codeigniter中上传多个文件

images[]
根据@Denmark 更改上传方法。

    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;    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5064906.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存