此处的表单包含大量输入文字字段和文件上传输入,只能接受多张图片。
需要做什么:
选择一堆图像并单击提交按钮后 - 控制器应将文本数据插入一个表格,然后上传所有图像并将其文件名添加到图像 table with foreign_key链接到插入的文本数据,最后将第一个被选中的图像转换为缩略图并将其名称和foreign_key链接到文本数据行上传到缩略图表也是。
会发生什么:
图片+缩略图正确上传(或放入上传文件夹,没有任何重复等),但由于某种原因,所选的最后图像被缩略图,而不是第一张。< / p>
此外,虽然只有一个图像被缩略图 - 但数据库最终会将选择/上传的每个图像的名称添加到名称中带有_thumb
的缩略图表中。 / p>
crud.php (控制器)
function add()
{
//Set validation properties
$this->_set_fields();
//Set common properties
$data['title'] = 'Add new data row';
$data['message'] = '';
$data['action'] = site_url('crud/addDataRow');
$data['link_back'] = anchor('crud/index', 'Back to list', array('class' => 'back'));
//Load the view
$this->load->view('templates/header', $data);
$this->load->view('pages/crud_edit', $data);
$this->load->view('templates/footer');
}
function addDataRow()
{
//Set common properties
$data['title'] = 'Add new data row';
$data['action'] = site_url('crud/addDataRow');
$data['link_back'] = anchor('crud/index/', 'Back to list', array('class' => 'back'));
//Set validation properties
$this->_set_fields();
$this->_set_rules();
//Run validation
if($this->form_validation->run() == FALSE)
{
$data['message'] = '';
}
else
{
//Get the text data from $_POST
$data_row = array(
'title' => $this->input->post('title'),
'text' => $this->input->post('text'),
'price' => $this->input->post('price'),
'status' => $this->input->post('status'),
'type' => $this->input->post('type')
);
//Insert text data into table
$id = $this->crud_model->save($data_row);
//Now move on to image processing
//original image upload settings
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '6000';
$config['max_width'] = '1680';
$config['max_height'] = '1050';
$path_to_uploads= './assets/upload';
$config['upload_path'] = $path_to_uploads;
$this->load->library('upload', $config);
$arr_files = @$_FILES['images'];
$_FILES = array();
foreach(array_keys($arr_files['name']) as $h){
$_FILES["file_{$h}"] = array(
'name' => $arr_files['name'][$h],
'type' => $arr_files['type'][$h],
'tmp_name' => $arr_files['tmp_name'][$h],
'error' => $arr_files['error'][$h],
'size' => $arr_files['size'][$h]
);
}
//add this
$this->upload->initialize($config);
foreach(array_keys($_FILES) as $h) {
if (!$this->upload->do_upload($h)){
$error = $this->upload->display_errors();
//echo "<script>alert($error);</script>";
print($error); die;
}else{
$upload_data=$this->upload->data();
$file_name=$upload_data['file_name'];
$full_file_path = $path_to_uploads.'/'.$file_name;
$image_row = array(
'id_path' => $file_name,
'id_data_row' => $id
);
//Upload original image
$this->crud_model->save_image($image_row);
if(current($_FILES) == $_FILES['file_0']){
//Thumbnail config
$config['image_library'] = 'gd2';
$config['source_image'] = $full_file_path;
$config['create_thumb'] = TRUE;
$config['maintain_ratio'] = TRUE;
$config['width'] = 150;
$config['height'] = 150;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
$thumbnail_row = array(
'id_path' => str_replace(".", "_thumb.", $file_name),
'id_data_row' => $id
);
$this->crud_model->save_thumbnail($thumbnail_row);
}
}
}
//Set form input name="id"
$this->form_validation->id = $id;
//Set user message
$data['message'] = '<div class="success">New data row added!</div>';
}
$this->load->view('templates/header', $data);
$this->load->view('pages/crud_edit', $data);
$this->load->view('templates/footer');
}
crud_model.php (模特)
//Add new data row
function save($data)
{
$this->db->insert($this->tbl_data, $data);
return $this->db->insert_id();
}
//Add the original image
function save_image($data)
{
$this->db->insert($this->tbl_images, $data);
return $this->db->insert_id();
}
//Add the thumbnail upload path and id of the row in data table to link them
function save_thumbnail($data)
{
$this->db->insert($this->tbl_thumbnails, $data);
return $this->db->insert_id();
}
答案 0 :(得分:1)
似乎您的检查失败,因此循环每次都在运行,并覆盖最后一个循环图像的缩略图。
尝试从
更改支票if(current($_FILES) == $_FILES['file_0']){
到
if($h=='file_0'){