黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

CodeIgniter 文件上傳

codeigniter 文件上傳

 

使用文件上傳類,我們可以上傳文件,也可以限制上傳文件的類型和大小。按照給定示例中顯示的步驟了解 codeigniter 中的文件上傳過程。

 

示例

復(fù)制以下代碼并將其存儲(chǔ)在 application/view/upload_form.php。

  
    
      upload form 
   
	
    
       echo $error; 
       echo form_open_multipart('upload/do_upload'); 
		
                 
         

 
          
       
		
   
	

復(fù)制下面給出的代碼并將其存儲(chǔ)在 application/view/upload_success.php

  
    
      upload form 
   
	
     
      

your file was successfully uploaded!

    foreach ($upload_data as $item =--> $value):?>
  • echo $item;: echo $value;
  • endforeach;

echo anchor('upload', 'upload another file!');

復(fù)制下面給出的代碼并將其存儲(chǔ)在 application/controllers/upload.php。在 codeigniter 的根目錄(即應(yīng)用程序文件夾的父目錄)創(chuàng)建" uploads"文件夾。

  
   class upload extends ci_controller {
	
      public function __construct() { 
         parent::__construct(); 
         $this--->load->helper(array('form', 'url')); 
      }
		
      public function index() { 
         $this->load->view('upload_form', 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('upload_form', $error); 
         }
			
         else { 
            $data = array('upload_data' => $this->upload->data()); 
            $this->load->view('upload_success', $data); 
         } 
      } 
   } 
?>

在 application/config/routes.php 中的路由文件中進(jìn)行以下更改,并在文件末尾添加以下行。

$route['upload'] = 'upload';

現(xiàn)在讓我們通過在瀏覽器中訪問以下 url 來執(zhí)行此示例。將 yoursite.com 替換為您的網(wǎng)址。

http://yoursite.com/index.php/upload

它將產(chǎn)生以下屏幕:

成功上傳文件后,您將看到以下屏幕:

下一節(jié):codeigniter 發(fā)送電子郵件

codeigniter 教程

相關(guān)文章