


Using CodeIgniter's class library to upload images_PHP tutorial
CodeIgniter's file upload class allows files to be uploaded. You can set up to upload files of a certain type and size.
The 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 the form:
<form method="post" action="<?=base_url()?>admin/img_upload/" enctype="multipart/form-data" /> <div style="margin:0 0 0.5em 0em;"> <input type="file" name="userfile" size="20" class="button" /> <input type="submit" value=" 上传 " class="button" /> </div> </form>
Then the following is the upload class:
public function img_upload() { $this->load->helper('url'); $config['upload_path'] = './images/'.date('Ym', time()).'/'; $config['allowed_types'] = 'gif|jpg|png'; $config['file_name'] = date('Y_m_d', time()).'_'.sprintf('%02d', rand(0,99)); $config['max_size'] = '500'; $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()); } else { $data = array('upload_data' => $this->upload->data()); } }
Preference parameters
Preferences | Defaults | Options | 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 As a MIME type. Allow multiple types separated by vertical bars '|' | ||||||||||||||||||||||||||||||||||||||||||||
file_name | None | Want to use File name |
|
||||||||||||||||||||||||||||||||||||||||||||
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, CI will add a number after the file name of the new file. If set to true, if a file with the same name as the one you are uploading exists, it will be overwritten. If set to false, a number will be appended to the filename if another with the same name exists. | ||||||||||||||||||||||||||||||||||||||||||||
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, the file name Spaces in will be replaced with underscores. Recommended. |
- $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".
- $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.
- $this->upload->data(): This is a helper function that returns an array of all relevant information about the file you uploaded.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to implement custom middleware in CodeIgniter Introduction: In modern web development, middleware plays a vital role in applications. They can be used to perform some shared processing logic before or after the request reaches the controller. CodeIgniter, as a popular PHP framework, also supports the use of middleware. This article will introduce how to implement custom middleware in CodeIgniter and provide a simple code example. Middleware overview: Middleware is a kind of request

WeChat applet implements picture upload function With the development of mobile Internet, WeChat applet has become an indispensable part of people's lives. WeChat mini programs not only provide a wealth of application scenarios, but also support developer-defined functions, including image upload functions. This article will introduce how to implement the image upload function in the WeChat applet and provide specific code examples. 1. Preparatory work Before starting to write code, we need to download and install the WeChat developer tools and register as a WeChat developer. At the same time, you also need to understand WeChat

Steps to implement image upload and display using CakePHP framework Introduction: In modern web applications, image upload and display are common functional requirements. The CakePHP framework provides developers with powerful functions and convenient tools, making it simple and efficient to upload and display images. This article will introduce you to how to use the CakePHP framework to upload and display images. Step 1: Create a file upload form First, we need to create a form in the view file for users to upload images. The following is an example of

CodeIgniter Middleware: Accelerating Application Responsiveness and Page Rendering Overview: As web applications continue to grow in complexity and interactivity, developers need to use more efficient and scalable solutions to improve application performance and responsiveness. . CodeIgniter (CI) is a lightweight PHP-based framework that provides many useful features, one of which is middleware. Middleware is a series of tasks that are performed before or after the request reaches the controller. This article will introduce how to use

Introduction to the method of using the database query builder (QueryBuilder) in the CodeIgniter framework: CodeIgniter is a lightweight PHP framework that provides many powerful tools and libraries to facilitate developers in web application development. One of the most impressive features is the database query builder (QueryBuilder), which provides a concise and powerful way to build and execute database query statements. This article will introduce how to use Co

How to handle image uploading and compression in Vue technology development In modern web applications, image uploading is a very common requirement. However, due to network transmission and storage reasons, directly uploading original high-resolution images may result in slow upload speeds and a large waste of storage space. Therefore, uploading and compressing images is very important. In Vue technology development, we can use some ready-made solutions to handle image uploading and compression. The following will introduce how to use vue-upload-comone

As web applications continue to evolve, it is important to develop applications more quickly and efficiently. And, as RESTful API is widely used in web applications, it is necessary for developers to understand how to create and implement RESTful API. In this article, we will discuss how to implement MVC pattern and RESTful API using CodeIgniter framework. Introduction to MVC pattern MVC (Model-Vie

How to use PHP and Vue to implement the image upload function. In modern web development, the image upload function is a very common requirement. This article will introduce in detail how to use PHP and Vue to implement the image upload function, and provide specific code examples. 1. Front-end part (Vue) First, you need to create a form for uploading images on the front-end. The specific code is as follows:<template><div><inputtype="fil
