search
HomeBackend DevelopmentPHP TutorialCodeigniter file upload class code example in PHP_PHP tutorial

Codeigniter file upload class code example

File upload class

CodeIgniter’s file upload class allows files to be uploaded. You can set up to upload files of a certain type and size.

Processing process

Common process for uploading files:

A form for uploading files, allowing the user to select a file and upload it.

When this form is submitted, the file is uploaded to the specified directory.

At the same time, the document will be verified to see if it meets the requirements you set.

Once the file is uploaded successfully, a confirmation window indicating successful upload will be returned.

Here is a short tutorial showing the process. Hereafter you will find relevant reference information.

Create upload form

Use a text editor to create a file named upload_form.php, copy the following code and save it in the applications/views/ directory:

You will see that a form helper function is used here to create the start tag of the form. File upload requires a multipart form, because this form helper function creates an appropriate statement for you. You will also see that we use an $error variable, which will display relevant error information when the user submits the form and an error occurs.

Successfully uploaded page

Use a text editor to create a file named upload_success.php. Copy the following code and save it in the applications/views/ directory:

Your file was successfully uploaded!

 $value):?>

 :

Controller

Using a text editor, create a controller named upload.php. Copy the following code and save it to the applications/controllers/ directory:

Load->helper(array('form', 'url')); } function index() { $this->load->view('upload_form', array('error' => ' ' )); } 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()) { $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); } } } ?>

Upload file directory

You will also need a destination folder to store the uploaded images. Create a file named uploads in the root directory and set the file's attributes to 777. (i.e. read and write)

Submit form

To submit your form, enter a URL similar to the following:

Example.com/index.php/upload/

You will see an upload form, select any (jpg, gif, or png) image to submit. If the path you set in the controller is correct, it will start working.

Initialize file upload class

Similar to some other CodeIgniter classes, the file upload class is initialized in the controller using the $this->load->library function:

$this->load->library('upload');

Once the file upload class is loaded, the object will be referenced through the following method: $this->upload

Preferences

Similar to other libraries, you will control which files are uploaded based on your preferences. In the controller, you create the following preferences:

$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);

// Alternately you can set preferences by calling the initialize function. Useful if you auto-load the class:

  //[If you automatically loaded the upload class in the autoload.php file in the config folder, or loaded it in the constructor, you can call the initialization function initialize to load the settings. ————This bracket is translated by IT Tumbler, with my own understanding added】

$this->upload->initialize($config);

The above preferences will be fully implemented. Below are descriptions of all preference parameters.

Preference parameters

The following preference parameters are available. When you don't specify a preference parameter, the default value is as follows:

Preferences Default Value Option Description

 upload_path None None File upload path. The path must be writable, both relative and absolute paths are acceptable.

 allowed_types None None MIME types that allow uploading files; usually file extensions can be used as MIME types. Multiple types are allowed to be separated by vertical bars ‘|’

File_name None The file name you want to use

If this parameter is set, CodeIgniter will rename the uploaded file according to the file name set here. The extension in the file name must also be an allowed file type.

overwrite FALSE TRUE/FALSE (boolean) Whether to overwrite. When this parameter is TRUE, if a file with the same name is encountered when uploading a file, the original file will be overwritten; if this parameter is FALSE, when a file with the same name is uploaded, CI will add a number after the file name of the new file.

max_size 0 None The maximum allowed upload file size (in K). If this parameter is 0, there is no limit. Note: Usually PHP also has this restriction, which can be specified in the php.ini file. Usually the default is 2MB.

max_width 0 None The maximum width of the uploaded file (in pixels). 0 means no limit.

max_height 0 None The maximum height of the uploaded file (in pixels). 0 means no limit.

max_filename 0 None The maximum length of the file name. 0 means no limit.

 encrypt_name FALSE TRUE/FALSE (boolean) Whether to rename the file. If this parameter is TRUE, the uploaded file will be renamed to a random encrypted string. This is very useful when you want the file uploader to be unable to distinguish the file names of the files they upload. This option only works when overwrite is FALSE.

 remove_spaces TRUE TRUE/FALSE (boolean) When the parameter is TRUE, spaces in the file name will be replaced with underscores. Recommended.

Set preference parameters in the configuration file

If you don’t want to use the above method to set preferences, you can use a configuration file instead. Simply create a file called upload.php, add the $config array to the file, then save the file to: config/upload.php and it will be loaded automatically. When you save configuration parameters to this file, you do not need to manually load them using the $this->upload->initialize function.

Functions used

The following functions are used

$this->upload->do_upload()

Perform operations based on your preferred configuration parameters. Note: By default, the uploaded file comes from the file field named userfile in the submission form, and the form must be of type "multipart":

If you want to customize your own file domain name before executing the do_upload function, you can do so through the following methods:

 $field_name = "some_field_name";

$this->upload->do_upload($field_name)

$this->upload->display_errors()

If do_upload() returns failure, an error message will be displayed. This function does not automatically output, but returns data, so you can arrange it however you want.

Formatting error

The above function uses

by default

Mark error messages. You can set your own separator like this.

$this->upload->display_errors('

 , '

 );

$this->upload->data()

This is a helper function that returns an array of all relevant information about the file you uploaded.

Array

 (

 [file_name] => mypic.jpg

 [file_type] => image/jpeg

 [file_path] => /path/to/your/upload/

 [full_path] => /path/to/your/upload/jpg.jpg

 [raw_name] => mypic

 [orig_name] => mypic.jpg

 [client_name] => mypic.jpg

 [file_ext] => .jpg

 [file_size] => 22.2

 [is_image] => 1

 [image_width] => 800

 [image_height] => 600

 [image_type] => jpeg

 [image_size_str] => width="800" height="200"

 )

Explanation

Here is an explanation of the above array items.

 Item Description

file_name The name of the uploaded file (including extension)

file_type Mime type of the file

file_path The absolute path of the file excluding the file name

full_path The absolute path of the file including the file name

raw_name The part of the file name excluding the extension

orig_name The initial file name of the uploaded file. This only works if upload file rename (encrypt_name) is set.

Client_name is the file name of the uploaded file on the client.

file_ext file extension (including ‘.’)

 file_size image size, unit is kb

Is_image whether it is an image. 1 = is an image. 0 = Not an image.

Image_width image width.

 image_height image height

Image_type file type, that is, file extension (excluding ‘.’)

Image_size_str A string containing width and height. Used in an img tag.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/769527.htmlTechArticlecodeigniter file upload class code example file upload class CodeIgniter's file upload class allows files to be uploaded. You can set up to upload files of a certain type and size. ...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version