CodeIgniter 的文件上傳類允許文件被上傳。您可以設置指定上傳某類型的文件及指定大小的文件。
上傳文件普遍的過程:
下面是表單:
<form method="post" action="<?=base_url()?>admin/img_upload/" enctype="multipart/form-data" /> <div > <input type="file" name="userfile" size="20" class="button" /> <input type="submit" value=" 上傳 " class="button" /> </div> </form>
然後是下面是上傳類:
public function img_upload() { $this->load->helper('url'); $config['upload_path'] = './images/'.date('Ym', time()).'/'; $config['allowed_types'] = 'gif|jpg|png'; $config['file_name'] = date('Y_m_d', time()).'_'.sprintf('%02d', rand(0,99)); $config['max_size'] = '500'; $config['max_width'] = '1024'; $config['max_height'] = '768'; $this->load->library('upload', $config); if ( !$this->upload->do_upload()) { $error = array('error' => $this->upload->display_errors()); } else { $data = array('upload_data' => $this->upload->data()); } }
如果設置了這個參數,CodeIgniter 將根據這裡設置的文件名來對上傳的文件進行重命名。文件名中的擴展名也必須是允許的文件類型。
overwriteFALSETRUE/FALSE (boolean)是否覆蓋。該參數為TRUE時,如果上傳文件時碰到重名文件,將會把原文件覆蓋;如果該參數為FALSE,CI將會在新文件的文件名後面加一個數字。If set to true, if a file with the same name as the one you are uploading exists, it will be overwritten. If set to false, a number will be appended to the filename if another with the same name exists.max_size0None允許上傳文件大小的最大值(以K為單位)。該參數為0則不限制。注意:通常PHP也有這項限制,可以在php.ini文件中指定。通常默認為2MB。max_width0None上傳文件的寬度最大值(像素為單位)。0為不限制。max_height0None上傳文件的高度最大值(像素為單位)。0為不限制。max_filename0None文件名的最大長度。0為不限制。encrypt_nameFALSETRUE/FALSE (boolean)是否重命名文件。如果該參數為TRUE,上傳的文件將被重命名為隨機的加密字符串。當你想讓文件上傳者也不能區分自己上傳的文件的文件名時,是非常有用的。當 overwrite 為 FALSE 時,此選項才起作用。remove_spacesTRUETRUE/FALSE (boolean)參數為TRUE時,文件名中的空格將被替換為下劃線。推薦使用。