dongpu1331 2019-01-18 12:51
浏览 42
已采纳

Codeigniter获取多个文件的图像名称

I have some code that i am using to upload multiple images i a form. I am uploading and renaming the images like this

//Obtain Picture

        $config['upload_path']          = './uploads/';
        $config['allowed_types']        = 'gif|jpg|png|pdf';
        $config['max_size']             = 5000;
        $config['max_width']            = 2000;
        $config['max_height']           = 2000;
        $rand_name = 'vehicles'.rand(321,8999).'_'.time();
        $config['file_name'] = $rand_name;
        $this->load->library('upload', $config);
        $this->upload->do_upload('logbook');
        $this->upload->do_upload('inrep');
        $this->upload->do_upload('insurance');
        $this->upload->do_upload('vp');
        $data = array('upload_data' => $this->upload->data());

the form names for the multiple uploads which are unrelated are as follows logbook,inrep,insurance and vp

The code above uploads the files and renames them but i would like to obtain the new names of the files given the form name of the fields.

Right now, the files are uploaded and renamed but i cant they are from which field name.

  • 写回答

1条回答 默认 最新

  • douhuang1852 2019-01-18 13:10
    关注

    You can get new file name using

    $this->upload->data();
    

    This will return details of uploaded files. So you can do it like

    $config['upload_path']          = './uploads/';
    $config['allowed_types']        = 'gif|jpg|png|pdf';
    $config['max_size']             = 5000;
    $config['max_width']            = 2000;
    $config['max_height']           = 2000;
    $rand_name = 'vehicles'.rand(321,8999).'_'.time();
    $config['file_name'] = $rand_name;
    $this->load->library('upload', $config);
    
    $this->upload->do_upload('logbook');
    $logbook = $this->upload->data();
    $logbook_new_filename = $logbook['file_name'];
    
    $this->upload->do_upload('inrep');
    $inrep = $this->upload->data();
    $inrep_new_filename = $inrep['file_name'];
    
    $this->upload->do_upload('insurance');
    $insurance= $this->upload->data();
    $insurance_new_filename = $insurance['file_name'];
    
    $this->upload->do_upload('vp');
    $vp= $this->upload->data();
    $vp_new_filename = $vp['file_name'];
    

    I haven't tested it. But I use like this to get uploaded filename.Hope it will help.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器