- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试上传多个图像,并且我设置了一个 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/
我正在尝试上传多个图像,并且我设置了一个 jquery 插件,因此我可以浏览多个文件并选择它们。 我遇到的唯一问题是访问 Controller 中的文件数组,有人知道我该怎么做吗?谢谢。 看法: 最
我正在使用 Swift 3 和 Firebase 制作一个 iOS 应用。我不断收到错误消息“无法将‘UserFile’类型的值转换为预期参数‘User’”。这是我的代码: import Founda
我正在尝试在我的 Windows Forms 中创建一个文本文件应用。它工作正常,但它是在应用程序的默认位置(如文件夹 bin)创建文本文件。但我想将创建的文本文件保存在我的用户文件夹中。我该怎么做?
根据 the POST method uploads section的 the PHP Manual , $_FILES['userfile']['name'] 是客户端机器上文件的原始名称。该部分中
我正在我的 android 应用程序中使用本地化 当语言设置为阿拉伯语时,在 okhttp (okhttp:3.12.0) 的文件上传过程中出现此错误 E/AndroidRuntime: FATAL
我是一名优秀的程序员,十分优秀!