這篇文章主要介紹了CI框架實現優化文件上傳及多文件上傳的方法,結合實例形式詳細分析了CI框架優化文件上傳及多文件上傳的實現思路與具體操作步驟,需要的朋友可以參考下
本文實例分析了CI框架實作最佳化檔案上傳及多檔案上傳的方法。分享給大家供大家參考,具體如下:
最近一直在研究Codeigniter框架,開發專案寫到文件上傳的時候發現大部分程式設計師使用Codeigniter框架的文件上傳類別編寫上傳方法的時候寫的都存在這程式碼冗餘(或者說程式碼重複利用率低、比較消耗資源。)故而我研究出一個稍微優化一點的上傳方法。而且在尋找資料時發現,Codeigniter框架同時上傳多個檔案比較困難,所以在優化方法的同時我又研究了一下如何使用Codeigniter框架實作同時上傳多個檔案。下面就來和大家分享一下,有興趣的同學可以關心一下,同時歡迎大家指正錯誤。
1、優化檔案上傳方法
Codeigniter手冊裡面的那種大家常用的方法在這裡就不重複描述了,下面直接說如何對方法進行優化以達到降低程式碼冗餘,提高程式碼重複利用率的目的。
a) 首先在「 application/config 」 新建" upload.php " 設定檔
在「 application/config 」 新建" upload.php" 設定文件,在裡面寫入上傳的配置參數。
<?php defined('BASEPATH') OR exit('No direct script access allowed'); //上传的参数配置 $config['upload_path'] = './public/uploads/'; $config['allowed_types'] = 'gif|png|jpg'; $config['max_size'] = 100; $config['max_width'] = '1024'; $config['max_height'] = '768';
注意:upload_path參數所代表的路徑資料夾你已經在專案中建立完畢!
b) 在控制器的建構子中載入檔案上傳類別
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /** * 控制器 */ class Brand extends Admin_Controller { public function __construct() { parent::__construct(); $this->load->model('brand_model'); $this->load->library('form_validation'); //激活分析器以调试程序 $this->output->enable_profiler(TRUE); //配置中上传的相关参数会自动加载 $this->load->library('upload'); } }
注意:我們在第一步驟建立的「 upload. php ” 文件中的上傳設定資訊會在這裡會自動進行載入。
c) 寫上傳方法執行do_upload()方法進行檔案上傳
#public function insert() { //设置验证规则 $this->form_validation->set_rules('brand_name','名称','required'); if($this->form_validation->run() == false){ //未通过验证 $data['message'] = validation_errors(); $data['wait'] = 3; $data['url'] = site_url('admin/brand/add'); $this->load->view('message.html',$data); }else{ //通过验证,处理图片上传 if ($this->upload->do_upload('logo')) { //logo为前端file控件名 //上传成功,获取文件名 $fileInfo = $this->upload->data(); $data['logo'] = $fileInfo['file_name']; //获取表单提交数据 $data['brand_name'] = $this->input->post('brand_name'); $data['url'] = $this->input->post('url'); $data['brand_desc'] = $this->input->post('brand_desc'); $data['sort_order'] = $this->input->post('sort_order'); $data['is_show'] = $this->input->post('is_show'); //调用模型完成添加动作 if($this->brand_model->add_brand($data)){ $data['message'] = "添加成功"; $data['wait'] = 3; $data['url'] = site_url('admin/brand/index'); $this->load->view('message.html',$data); }else{ $data['message'] = "添加失败"; $data['wait'] = 3; $data['url'] = site_url('admin/brand/add'); $this->load->view('message.html',$data); } }else{ //上传失败 $data['message'] = $this->upload->display_errors(); $data['wait'] = 3; $data['url'] = site_url('admin/brand/add'); $this->load->view('message.html',$data); } } }
注意:上述程式碼有部分是我專案中的程式碼,大家可以忽略直接關注關鍵的上傳程式碼。當你需要上傳不同的檔案時,你也可以在方法中進行檔案上傳配置,使用$this->upload->initialize()方法進行配置。
2、同時上傳多檔案的兩種方法
① 方法一思路:對所上傳的多個檔案進行循環處理
#/** * Codeigniter框架实现多文件上传 * @author Zhihua_W * 方法一:对上传的文件进行循环处理 */ public function multiple_uploads1() { //载入所需文件上传类库 $this->load->library('upload'); //配置上传参数 $upload_config = array( 'upload_path' => './public/uploads/', 'allowed_types' => 'jpg|png|gif', 'max_size' => '500', 'max_width' => '1024', 'max_height' => '768', ); $this->upload->initialize($upload_config); //循环处理上传文件 foreach ($_FILES as $key => $value) { if (!empty($key['name'])) { if ($this->upload->do_upload($key)) { //上传成功 print_r($this->upload->data()); } else { //上传失败 echo $this->upload->display_errors(); } } } }
② 方法二想法:直接將多個檔案全部上傳然後在對上傳過的資料進行處理
/** * Codeigniter框架实现多文件上传 * @author Zhihua_W * 方法二:直接一下将多个文件全部上传然后在对上传过的数据进行处理 */ public function multiple_uploads2() { $config['upload_path'] = './public/uploads/'; //这里的public是相对于index.php的,也就是入口文件,这个千万不能弄错! //否则就会报错:"The upload path does not appear to be valid."; $config['allowed_types'] = 'gif|jpg|png'; //我试着去上传其它类型的文件,这里一定要注意顺序! //否则报错:"A problem was encountered while attempting to move the uploaded file to the final destination." //这个错误一般是上传文件的文件名不能是中文名,这个很郁闷!还未解决,大家可以用其它方法,重新改一下文件名就可以解决了! //$config['allowed_types'] = 'zip|gz|png|gif|jpg';(正确) //$config['allowed_types'] = 'png|gif|jpg|zip|gz';(错误) $config['max_size'] = '1024'; $config['max_width'] = '1024'; $config['max_height'] = '768'; $config['file_name'] = time(); //文件名不使用原始名 $this->load->library('upload', $config); if (!$this->upload->do_upload()) { echo $this->upload->display_errors(); } else { $data['upload_data'] = $this->upload->data(); //上传文件的一些信息 $img = $data['upload_data']['file_name']; //取得文件名 echo $img . "<br>"; foreach ($data['upload_data'] as $item => $value) { echo $item . ":" . $value . "<br>"; } } }
#兩種方法那個比較方便?那個比較高效率?大家可以試著自己試試看!
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
##
以上是如何使用CI框架實現文件上傳的最佳化以及多文件上傳的詳細內容。更多資訊請關注PHP中文網其他相關文章!