Codeigniter Rename file on upload

后端 未结 9 2315
暗喜
暗喜 2020-12-13 09:28

I\'m trying to add time as the prefix of the image name along with the original name when uploading, But I couldn\'t figure it out. Please help me with the following code to

9条回答
  •  醉梦人生
    2020-12-13 10:14

            /* Conf */
            $new_name                   = time().$_FILES["userfiles"]['name'];
            $config['file_name']        = $new_name;
            $config['upload_path']      = './upload/';
            $config['allowed_types']    = 'gif|jpg|png';
            $config['max_size']         = '';
            $config['max_width']        = '';
            $config['max_height']       = '';
            $config['file_ext_tolower'] = TRUE;
    
          /*  Load the upload library  */   
            $this->load->library('upload', $config);
    

提交回复
热议问题