Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/codeigniter/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 使用CodeIgniter使用两个输入字段仅上载两个图像_Php_Codeigniter - Fatal编程技术网

Php 使用CodeIgniter使用两个输入字段仅上载两个图像

Php 使用CodeIgniter使用两个输入字段仅上载两个图像,php,codeigniter,Php,Codeigniter,控制器 public function insertDepartmentImage() { $this->load->model('Gallery_Model/Gallery_Model'); $config['upload_path'] = './uploads/galleryImg'; $config['allowed_types'] = 'png|jpg|gif|jpeg'; $config['max_size'] =

控制器

public function insertDepartmentImage()
{
    $this->load->model('Gallery_Model/Gallery_Model');  
    $config['upload_path'] = './uploads/galleryImg';
    $config['allowed_types'] = 'png|jpg|gif|jpeg';
            $config['max_size']    = '10000000';             
    $config['file_name']='smallImage';
    $config['file_name1']='bigImage';
    $config['overwrite']=false;   
    $this->load->library('upload', $config);        
    if (!is_dir('uploads'))
    {
        mkdir('./uploads', 0777, true);
    }
    $dir_exist = true;  
    if (!is_dir('uploads/' . $album))
    {
    mkdir('./uploads/' . $album, 0777, true);
    $dir_exist = false; // dir not exist
    }
    else{ }              

    if (!$this->upload->do_upload('filename'))
    {
        $this->load->model('Gallery_Model/Gallery_Model');            
        $upload_error = array('error' => $this->upload->display_errors());       
        $this->load->view('/admin/Gallery/vwGallery',$upload_error);
    }
    else
    {   
        $upload_data = $this->upload->data();   
        $data['success_msg'] = '<div class="alert alert-success text-center">Your file <strong>' . $upload_data['file_name'] . '</strong> was successfully uploaded!</div>';        
        $this->load->model('Gallery_Model/Gallery_Model');               
        $file_name =   $upload_data['file_name'];
        $file_name1 =   $upload_data['file_name1'];
        $deptId = $this->input->post('deptId'); 
        $deptDetails = $this->input->post('deptDetails');
        $deptDetails1 = $this->input->post('deptDetails1');      
        $this->Gallery_Model->insertDepartmentImage($deptId,$file_name,$file_name1,$deptDetails,$deptDetails1);           
    }       
} 
公共函数insertDepartmentImage()
{
$this->load->model('Gallery_model/Gallery_model');
$config['upload_path']='./uploads/gallerymg';
$config['allowed_types']='png | jpg | gif | jpeg';
$config['max_size']='10000000';
$config['file_name']='smallImage';
$config['file_name1']='bigImage';
$config['overwrite']=false;
$this->load->library('upload',$config);
如果(!is_dir('uploads'))
{
mkdir('./上传',0777,真);
}
$dir_exist=true;
如果(!is_dir('uploads/'.$album))
{
mkdir(“./uploads/”.$album,0777,true);
$dir\u exist=false;//dir不存在
}
else{}
如果(!$this->upload->do_upload('filename'))
{
$this->load->model('Gallery_model/Gallery_model');
$upload_error=array('error'=>$this->upload->display_errors());
$this->load->view('/admin/Gallery/vwGallery',$upload\u错误);
}
其他的
{   
$upload_data=$this->upload->data();
$data['success\u msg']=“您的文件。$upload\u data['file\u name']”。已成功上载!';
$this->load->model('Gallery_model/Gallery_model');
$file_name=$upload_data['file_name'];
$file_name1=$upload_data['file_name1'];
$deptId=$this->input->post('deptId');
$deptDetails=$this->input->post('deptDetails');
$deptDetails1=$this->input->post('deptDetails1');
$this->Gallery\u Model->insertDepartmentImage($deptId、$file\u name、$file\u name1、$deptDetails、$deptDetails1);
}       
} 
它工作正常,但只将一个文件名上传到数据库中。我必须再上传一张图片到数据库。但它不起作用。上传另一张图片怎么办

在我看来,我已经给出了两个输入字段


默认情况下,codeIgniter不支持多文件上传。因此,您可以使用此库CodeIgniter多重上载库

谢谢你们。但我会把代码改成控制器,这对我来说很有效

看法
谢谢大家。。。我现在解决我的问题

这是我的代码,希望能对你有所帮助

public function dashboard_templatedefault(){

    $upload1 = $_FILES['upload1']['name'];
    $upload2 = $_FILES['upload2']['name'];
    $upload3 = $_FILES['upload3']['name'];
    $upload4 = $_FILES['upload4']['name'];
    $upload5 = $_FILES['upload5']['name'];
    $upload6 = $_FILES['upload6']['name'];
    $upload7 = $_FILES['upload7']['name'];
    $upload8 = $_FILES['upload8']['name'];

    if($upload1 !== ""){

        $config['upload_path'] = './upload/';                        
        $config['log_threshold'] = 1;
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '0'; // 0 = no file size limit
        $config['file_name']='upload1';          
        $config['overwrite'] = false;
         $this->load->library('upload', $config);
         $this->upload->do_upload('upload1');
         $upload_data = $this->upload->data();
         $file_name = $upload_data['file_name'];

    }
    if($upload2 !== ""){

        $config['file_name']='upload2';
        $config['upload_path'] = './upload/';             
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '0'; // 0 = no file size limit           
        $config['overwrite'] = false;
        $this->load->library('upload', $config);
        $this->upload->do_upload('upload2');
        $upload_data = $this->upload->data();
        $file_name1 = $upload_data['file_name'];

    }
    if($upload3 !== ""){

        $config['file_name']='upload3';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] ='jpg|png|jpeg|gif';
        $config['max_size'] = '0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload3');
        $upload_data = $this->upload->data();
        $file_name2 = $upload_data['file_name'];

    }
    if($upload4 !== ""){

        $config['file_name'] = 'upload4';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload4');
        $upload_data = $this->upload->data();
        $file_name3 = $upload_data['file_name'];

    }
    if($upload5 !== ""){

        $config['file_name'] = 'upload5';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload5');
        $upload_data = $this->upload->data();
        $file_name4 = $upload_data['file_name'];

    }
    if($upload6 !== ""){

        $config['file_name'] = 'upload6';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload6');
        $upload_data = $this->upload->data();
        $file_name5 = $upload_data['file_name'];

    }
    if($upload7 !== ""){

        $config['file_name'] = 'upload7';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload7');
        $upload_data = $this->upload->data();
        $file_name6 = $upload_data['file_name'];

    }
    if($upload8 !== ""){

        $config['file_name'] = 'upload8';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload8');
        $upload_data = $this->upload->data();
        $file_name7 = $upload_data['file_name'];

    }



    $this->form_validation->set_rules('name','','xss_clean');
    $this->form_validation->set_rules('occasion','','xss_clean');
    $this->form_validation->set_rules('party_date','','xss_clean');
    $this->form_validation->set_rules('location','','xss_clean');
    $this->form_validation->set_rules('upload1','','xss_clean');
    $this->form_validation->set_rules('upload2','','xss_clean');
    $this->form_validation->set_rules('upload3','','xss_clean');
    $this->form_validation->set_rules('upload4','','xss_clean');
    $this->form_validation->set_rules('upload5','','xss_clean');
    $this->form_validation->set_rules('upload6','','xss_clean');
    $this->form_validation->set_rules('upload7','','xss_clean');
    $this->form_validation->set_rules('upload8','','xss_clean');
        $this->form_validation->run();

            $template_name = $this->input->post('template_name');
            $name = $this->input->post('name');
            $occasion = $this->input->post('occasion');
            $party_date = $this->input->post('party_date');
            $location = $this->input->post('location');
            $created = date('h:m:s a m/d/y');
            $profile_id = $this->input->post('profile_id');
            $this->admin_model->dashboard_templatedefault($template_name,$name,$occasion,$party_date,$location,$created,$profile_id,$upload1,$upload2,$upload3,$upload4,$upload5,$upload6,$upload7,$upload8);



}

您的代码似乎太长,请尝试此代码

 public function insertDepartmentImage()
    {
         $upload1 = $_FILES['upload1']['name'];      
         $upload2 = $_FILES['upload2']['name'];

        $config = array(
                'upload_path' => './uploads/galleryImg/',
                'log_threshold' => 1,
                'allowed_types' => 'jpg|png|jpeg|gif',
                'max_size' => '0',
                'overwrite' => false
            );
    for($i = 1; $i<=2; $i++){
        if(!empty('$upload'.$i)){
                        $config['file_name']='upload'.$i;
                        $this->load->library('upload', $config);
                        $this->upload->do_upload('upload'.$i);
                        $upload_data = $this->upload->data();
                        $file_name = $upload_data['file_name'];
                    }
    }
        $deptId = $this->input->post('deptId'); 
        $deptDetails = $this->input->post('deptDetails');
        $deptDetails1 = $this->input->post('deptDetails1');

        $this->Gallery_Model->insertDepartmentImage($deptId,$file_name,$file_name1,$deptDetails,$deptDetails1);



    }
公共函数insertDepartmentImage()
{
$upload1=$_文件['upload1']['name'];
$upload2=$_文件['upload2']['name'];
$config=array(
“上传路径”=>“./uploads/gallerymg/”,
“日志阈值”=>1,
“允许的_类型”=>“jpg | png | jpeg | gif”,
“最大大小”=>“0”,
“覆盖”=>false
);
对于($i=1;$iload->library($upload',$config);
$this->upload->do_upload('upload'.$i);
$upload_data=$this->upload->data();
$file_name=$upload_data['file_name'];
}
}
$deptId=$this->input->post('deptId');
$deptDetails=$this->input->post('deptDetails');
$deptDetails1=$this->input->post('deptDetails1');
$this->Gallery\u Model->insertDepartmentImage($deptId、$file\u name、$file\u name1、$deptDetails、$deptDetails1);
}

第二个文件代码在哪里?事实上,我认为问题出在控制器代码中。制作一个数组[]
name=“filename[]”
do_upload('filename[])
查看使用8个输入文件上载图像的问题,基于上述示例,但如果您喜欢($I=1;$I load->library('upload',$config),可以使用for循环$this->upload->do_upload('upload'.$i);$upload_data=$this->upload->data();$file_name=$upload_data['file_name']}}}ji根据您的回答,我试图在表中插入两个文本,两个图像,但我在
中得到了
smallImage
这两个图像的图像名称都不正确。
<input id="file-0" name="filename" class="file" type="file" multiple="true" />
<input id="file-0" name="filename1" class="file" type="file" multiple="true" />
public function dashboard_templatedefault(){

    $upload1 = $_FILES['upload1']['name'];
    $upload2 = $_FILES['upload2']['name'];
    $upload3 = $_FILES['upload3']['name'];
    $upload4 = $_FILES['upload4']['name'];
    $upload5 = $_FILES['upload5']['name'];
    $upload6 = $_FILES['upload6']['name'];
    $upload7 = $_FILES['upload7']['name'];
    $upload8 = $_FILES['upload8']['name'];

    if($upload1 !== ""){

        $config['upload_path'] = './upload/';                        
        $config['log_threshold'] = 1;
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '0'; // 0 = no file size limit
        $config['file_name']='upload1';          
        $config['overwrite'] = false;
         $this->load->library('upload', $config);
         $this->upload->do_upload('upload1');
         $upload_data = $this->upload->data();
         $file_name = $upload_data['file_name'];

    }
    if($upload2 !== ""){

        $config['file_name']='upload2';
        $config['upload_path'] = './upload/';             
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] = '0'; // 0 = no file size limit           
        $config['overwrite'] = false;
        $this->load->library('upload', $config);
        $this->upload->do_upload('upload2');
        $upload_data = $this->upload->data();
        $file_name1 = $upload_data['file_name'];

    }
    if($upload3 !== ""){

        $config['file_name']='upload3';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] ='jpg|png|jpeg|gif';
        $config['max_size'] = '0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload3');
        $upload_data = $this->upload->data();
        $file_name2 = $upload_data['file_name'];

    }
    if($upload4 !== ""){

        $config['file_name'] = 'upload4';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload4');
        $upload_data = $this->upload->data();
        $file_name3 = $upload_data['file_name'];

    }
    if($upload5 !== ""){

        $config['file_name'] = 'upload5';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload5');
        $upload_data = $this->upload->data();
        $file_name4 = $upload_data['file_name'];

    }
    if($upload6 !== ""){

        $config['file_name'] = 'upload6';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload6');
        $upload_data = $this->upload->data();
        $file_name5 = $upload_data['file_name'];

    }
    if($upload7 !== ""){

        $config['file_name'] = 'upload7';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload7');
        $upload_data = $this->upload->data();
        $file_name6 = $upload_data['file_name'];

    }
    if($upload8 !== ""){

        $config['file_name'] = 'upload8';
        $config['upload_path'] ='./upload/';
        $config['allowed_types'] = 'jpg|png|jpeg|gif';
        $config['max_size'] ='0';
        $config['overwrite'] = false;
        $this->load->library('upload',$config);
        $this->upload->do_upload('upload8');
        $upload_data = $this->upload->data();
        $file_name7 = $upload_data['file_name'];

    }



    $this->form_validation->set_rules('name','','xss_clean');
    $this->form_validation->set_rules('occasion','','xss_clean');
    $this->form_validation->set_rules('party_date','','xss_clean');
    $this->form_validation->set_rules('location','','xss_clean');
    $this->form_validation->set_rules('upload1','','xss_clean');
    $this->form_validation->set_rules('upload2','','xss_clean');
    $this->form_validation->set_rules('upload3','','xss_clean');
    $this->form_validation->set_rules('upload4','','xss_clean');
    $this->form_validation->set_rules('upload5','','xss_clean');
    $this->form_validation->set_rules('upload6','','xss_clean');
    $this->form_validation->set_rules('upload7','','xss_clean');
    $this->form_validation->set_rules('upload8','','xss_clean');
        $this->form_validation->run();

            $template_name = $this->input->post('template_name');
            $name = $this->input->post('name');
            $occasion = $this->input->post('occasion');
            $party_date = $this->input->post('party_date');
            $location = $this->input->post('location');
            $created = date('h:m:s a m/d/y');
            $profile_id = $this->input->post('profile_id');
            $this->admin_model->dashboard_templatedefault($template_name,$name,$occasion,$party_date,$location,$created,$profile_id,$upload1,$upload2,$upload3,$upload4,$upload5,$upload6,$upload7,$upload8);



}
 public function insertDepartmentImage()
    {
         $upload1 = $_FILES['upload1']['name'];      
         $upload2 = $_FILES['upload2']['name'];

        $config = array(
                'upload_path' => './uploads/galleryImg/',
                'log_threshold' => 1,
                'allowed_types' => 'jpg|png|jpeg|gif',
                'max_size' => '0',
                'overwrite' => false
            );
    for($i = 1; $i<=2; $i++){
        if(!empty('$upload'.$i)){
                        $config['file_name']='upload'.$i;
                        $this->load->library('upload', $config);
                        $this->upload->do_upload('upload'.$i);
                        $upload_data = $this->upload->data();
                        $file_name = $upload_data['file_name'];
                    }
    }
        $deptId = $this->input->post('deptId'); 
        $deptDetails = $this->input->post('deptDetails');
        $deptDetails1 = $this->input->post('deptDetails1');

        $this->Gallery_Model->insertDepartmentImage($deptId,$file_name,$file_name1,$deptDetails,$deptDetails1);



    }