這篇文章主要介紹了CI(CodeIgniter)框架實作圖片上傳的方法,結合實例形式分析了基於CodeIgniter呼叫檔案上傳類別實作圖片上傳功能的相關操作技巧,需要的朋友可以參考下
本文實例講述了CodeIgniter框架實現圖片上傳的方法。分享給大家供大家參考,具體如下:
對於圖片上傳這種老生常談的問題,在此我不得不再次重複一次,因為對於這個框架畢竟有些地方值得自己學習與借鑒,這篇文章我是藉助官方文件來寫的,但有些地方任然需要標明一下。
下面我們來看看圖片上傳吧。首先在「./application/views/」資料夾下創一個檢視檔:text.php,程式碼如下:
<html> <head> <title>Upload Form</title> </head> <body> <?php echo $error;?> <?php echo form_open_multipart('upload/do_upload');?> <input type="file" name="userfile" size="20"/> <br><br> <input type="submit" value="upload"/> </form> </body> </html>
Codeigniter有自己非常豐富upload類別函式庫,下面我們來看看控制器,在Controller中一個Upload.php文件,程式碼如下:
class Upload extends CI_Controller{ public function construct(){ parent::construct(); $this->load->helper("form","url"); } public function index(){ $this->load->view('test',array("error"=>'')); } public function do_upload(){ $config['upload_path']='./uploads/'; $config['allowed_types']='gif|jpg|png'; $config['max_size']=100; $config['max_width']=1024; $config['max_height']=768; $this->load->library('upload',$config); if(!$this->upload->do_upload('userfile')){ $error=array('error'=>$this->upload->display_errors()); $this->load->view('test',$error); }else{ $data=array('upload_data'=>$this->upload->data()); $this->load->view('upload_success',$data); } } }
下面在視圖中建立另外一個檔案upload_success.php
<html> <head> <title>Upload Form</title> </head> <body> <h3>Your file was successfully uploaded!</h3> <ul> <?php <foreach($upload_data as $item=>$value):?> <li> <?php echo $item;?>:<?php echo $value;?> </li> <?php?> </ul> </body> </html>
以上是詳解CI框架實現圖片上傳的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!