最近我在一次更新两个图像时发现了一些错误。我在第一个图像之前使用if (!empty($_FILES['ngo_logo']['name']))
,在第二个图像之前则使用elseif (!empty($_FILES['ngo_license_pic']['name']))
。
这是我的完整控制器代码:
function editProfile(){
$ngo_id = $this->profile_model->editNgoProfile();
/************* File Upload ************/
if (!empty($_FILES['ngo_logo']['name'])) {
$config['upload_path'] = './assets/uploads/ngo_logo/';
$config['allowed_types'] = 'gif|jpg|png|jpeg|pdf|doc|docx|zip|xls';
$config['overwrite'] = true;
$config['remove_spaces']=true;
$config['max_size']='10600';// in KB
$this->load->library('upload', $config);
$filetype = $_FILES['ngo_logo']['type'];
$file_name = $_FILES['ngo_logo']['name'];
if($filetype == "image/jpg")
$file_type='jpg';
else if ($filetype == "image/jpeg")
$file_type='jpeg';
else if ($filetype == "image/gif")
$file_type='gif';
else if($filetype == "image/jpeg")
$file_type='jpg';
else if($filetype == "image/pjpeg")
$file_type='pjpeg';
else if($filetype == "image/png")
$file_type='png';
$_FILES['ngo_logo']['name']=$ngo_id.'.'.$file_type;
$this->upload->do_upload('ngo_logo');
$up_dtat = array('ngo_logo' => $_FILES['ngo_logo']['name']);
$this->db->where('ngo_id',$ngo_id);
$this->db->update('tbl_ngo_users',$up_dtat);
}
elseif (!empty($_FILES['ngo_license_pic']['name'])) {
$config['upload_path'] = './assets/uploads/ngo_license_pic/';
$config['allowed_types'] = 'gif|jpg|png|jpeg|pdf|doc|docx|zip|xls';
$config['overwrite'] = true;
$config['remove_spaces']=true;
$config['max_size']='10600';// in KB
$this->load->library('upload', $config);
$filetype = $_FILES['ngo_license_pic']['type'];
$file_name = $_FILES['ngo_license_pic']['name'];
if($filetype == "image/jpg")
$file_type='jpg';
else if ($filetype == "image/jpeg")
$file_type='jpeg';
else if ($filetype == "image/gif")
$file_type='gif';
else if($filetype == "image/jpeg")
$file_type='jpg';
else if($filetype == "image/pjpeg")
$file_type='pjpeg';
else if($filetype == "image/png")
$file_type='png';
$_FILES['ngo_license_pic']['name']=$ngo_id.'.'.$file_type;
$this->upload->do_upload('ngo_license_pic');
$up_dtat = array('ngo_license_pic' => $_FILES['ngo_license_pic']['name']);
$this->db->where('ngo_id',$ngo_id);
$this->db->update('tbl_ngo_users',$up_dtat);
}
redirect('NGO_Profile');
}
我的问题是只有第一个图像会更新,但另一个不会更新
-->如果我只上传一个图像,它将更新,
-->若我只上传第一个图像,则第一个图像更新
-->-->若我仅上传第二个图像,那么第二个图片将只更新
我需要一个合适的解决方案,实际上是什么是不一次更新两个图像的主要原因
将elseif (!empty($_FILES['ngo_license_pic']['name'])) {
更改为if(...)
elseifs仅在A.第一个if条件为false B.elseif条件为true时触发。