gpt4 book ai didi

arrays - 上传多个文件 userfile[] 数组?

转载 作者:行者123 更新时间:2023-12-04 17:02:57 24 4
gpt4 key购买 nike

我正在尝试上传多个图像,并且我设置了一个 jquery 插件,因此我可以浏览多个文件并选择它们。

我遇到的唯一问题是访问 Controller 中的文件数组,有人知道我该怎么做吗?谢谢。

看法:

<input type="file" name="userfile[]" id="userfile" class="multi" />

最佳答案

去年我在一个项目上遇到了同样的问题,经过一番搜索,我找到了一个完美的功能。

我不相信它,但不记得我在哪里找到它,所以如果有人知道,请链接回作者。

确保表单具有这样命名的文件

<input type="file" name="userfile"/>
<input type="file" name="userfile2" />
<input type="file" name="userfile3" /> ..etc

或者
 <input type="file" name="userfile[]" />

功能..
function multiple_upload($upload_dir = 'uploads', $config = array())
{
$files = array();

if(empty($config))
{
$config['upload_path'] = '../path/to/file';
$config['allowed_types'] = 'gif|jpg|jpeg|jpe|png';
$config['max_size'] = '800000000';
}

$this->load->library('upload', $config);

$errors = FALSE;

foreach($_FILES as $key => $value)
{
if( ! empty($value['name']))
{
if( ! $this->upload->do_upload($key))
{
$data['upload_message'] = $this->upload->display_errors(ERR_OPEN, ERR_CLOSE); // ERR_OPEN and ERR_CLOSE are error delimiters defined in a config file
$this->load->vars($data);

$errors = TRUE;
}
else
{
// Build a file array from all uploaded files
$files[] = $this->upload->data();
}
}
}

// There was errors, we have to delete the uploaded files
if($errors)
{
foreach($files as $key => $file)
{
@unlink($file['full_path']);
}
}
elseif(empty($files) AND empty($data['upload_message']))
{
$this->lang->load('upload');
$data['upload_message'] = ERR_OPEN.$this->lang->line('upload_no_file_selected').ERR_CLOSE;
$this->load->vars($data);
}
else
{
return $files;
}
}

现在我已经有一段时间没有使用它了,所以如果您需要任何额外的帮助来设置它,请告诉我。

关于arrays - 上传多个文件 userfile[] 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9943695/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com