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 formyour 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)生以下屏幕:
成功上傳文件后,您將看到以下屏幕:
相關(guān)文章
- CodeIgniter 教程
- CodeIgniter 安裝
- CodeIgniter 應(yīng)用程序架構(gòu)
- CodeIgniter MVC 框架
- CodeIgniter 基本概念
- CodeIgniter 配置
- CodeIgniter 使用數(shù)據(jù)庫(kù)
- CodeIgniter 庫(kù)
- Laravel session
- Laravel 驗(yàn)證
- Laravel Facades
- Laravel 契約
- Laravel CSRF保護(hù)
- Laravel 認(rèn)證
- Laravel Artisan控制臺(tái)
- Laravel 加密
- Laravel 哈希
- Laravel 歷史版本記錄