Table of Contents
PHP multi-file upload operation,
Home Backend Development PHP Tutorial PHP multiple file upload operation, _PHP tutorial

PHP multiple file upload operation, _PHP tutorial

Jul 13, 2016 am 10:21 AM
php upload about principle and operate document article yes Simple

PHP multi-file upload operation,

In the previous article, I talked about the principle of PHP file upload and the simple operation example is single file upload.

http://www.cnblogs.com/lichenwei/p/3879566.html

In fact, multiple file uploads and single file uploads are similar. The principles are the same, but there are some tricks in the code.

The first is the index.html upload form, but the file in the previous file upload form is changed to file[]

<span><!</span><span>DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</span><span>></span>
<span><</span><span>html </span><span>xmlns</span><span>="http://www.w3.org/1999/xhtml"</span><span> xml:lang</span><span>="en"</span><span>></span>
<span><</span><span>head</span><span>></span>
    <span><</span><span>meta </span><span>http-equiv</span><span>="Content-Type"</span><span> content</span><span>="text/html;charset=UTF-8"</span><span>></span>
    <span><</span><span>title</span><span>></span>upload files<span></</span><span>title</span><span>></span>
<span></</span><span>head</span><span>></span>
<span><</span><span>body</span><span>></span>

    <span><</span><span>form </span><span>action</span><span>="upload.php"</span><span> enctype</span><span>="multipart/form-data"</span><span> method</span><span>="post"</span><span>></span>
        <span><</span><span>input </span><span>type</span><span>="hidden"</span><span> name</span><span>="MAX_FILE_SIZE"</span><span> value</span><span>="100000"</span> <span>/></span><span>
        上传文件:</span><span><</span><span>input </span><span>type</span><span>="file"</span><span> name</span><span>="file[]"</span><span>/><</span><span>br</span><span>/></span><span>
        上传文件:</span><span><</span><span>input </span><span>type</span><span>="file"</span><span> name</span><span>="file[]"</span><span>/><</span><span>br</span><span>/></span><span>
        上传文件:</span><span><</span><span>input </span><span>type</span><span>="file"</span><span> name</span><span>="file[]"</span><span>/><</span><span>br</span><span>/></span>    
        <span><</span><span>input </span><span>type</span><span>="submit"</span><span> value</span><span>="上传"</span> <span>/></span>
    <span></</span><span>form</span><span>></span>
<span></</span><span>body</span><span>></span>
<span></</span><span>html</span><span>></span>
Copy after login

Use $_FILES in upload.php to print it

<?<span>php  <br /></span><span>  print_r</span>(<span>$_FILES</span>); <br />?>
Copy after login

Get the following multi-dimensional array

<span>Array</span><span>
(
    [</span><span>file</span>] => <span>Array</span><span>
        (
            [name] </span>=> <span>Array</span><span>
                (
                    [</span>0] => 照片1.<span>jpg
                    [</span>1] => 照片2.<span>jpg
                    [</span>2] => 照片3.<span>jpg
                )

            [type] </span>=> <span>Array</span><span>
                (
                    [</span>0] => image/<span>jpeg
                    [</span>1] => image/<span>jpeg
                    [</span>2] => image/<span>jpeg
                )

            [tmp_name] </span>=> <span>Array</span><span>
                (
                    [</span>0] => F:\wamp\tmp\php36C7.<span>tmp
                    [</span>1] => F:\wamp\tmp\php36C8.<span>tmp
                    [</span>2] => F:\wamp\tmp\php36C9.<span>tmp
                )

            [error] </span>=> <span>Array</span><span>
                (
                    [</span>0] => 0<span>
                    [</span>1] => 0<span>
                    [</span>2] => 0<span>
                )

            [size] </span>=> <span>Array</span><span>
                (
                    [</span>0] => 0<span>
                    [</span>1] => 0<span>
                    [</span>2] => 0<span>
                )

        )

)</span>
Copy after login

According to the principle of single file upload, first think about what we need to get?

Obviously we need to get an array of file information. The array contains name, type, tmp_name, error, size. What we get at this time is a multi-dimensional array. Although the corresponding key values ​​exist, it is multi-dimensional. ,

We only need to split it, such as the three files above, we only need to split it into the corresponding three file information arrays.

Structure of split array

<span>Array</span><span>
(
    [</span>0] => <span>Array</span><span>
        (
            [name] </span>=> 照片1.<span>jpg
            [type] </span>=> image/<span>jpeg
            [tmp_name] </span>=> F:\wamp\tmp\php13C1.<span>tmp
            [error] </span>=> 0<span>
            [size] </span>=> 385150<span>
        )

    [</span>1] => <span>Array</span><span>
        (
            [name] </span>=> 照片2.<span>jpg
            [type] </span>=> image/<span>jpeg
            [tmp_name] </span>=> F:\wamp\tmp\php13D2.<span>tmp
            [error] </span>=> 0<span>
            [size] </span>=> 242043<span>
        )

    [</span>2] => <span>Array</span><span>
        (
            [name] </span>=> 照片3.<span>jpg
            [type] </span>=> image/<span>jpeg
            [tmp_name] </span>=> F:\wamp\tmp\php13D3.<span>tmp
            [error] </span>=> 0<span>
            [size] </span>=> 488293<span>
        )

)</span>
Copy after login

The following is the code for splitting and reorganizing the array

<?<span>php
    

    </span><span>//</span><span>print_r($_FILES['file']);</span>
    <span>$arr</span>=<span>$_FILES</span>['file'<span>];
    </span><span>$files</span>=<span>array</span><span>();
    </span><span>for</span>(<span>$i</span>=0;<span>$i</span><<span>count</span>(<span>$arr</span>['name']);<span>$i</span>++<span>){
        </span><span>$files</span>[<span>$i</span>]['name']=<span>$arr</span>['name'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['type']=<span>$arr</span>['type'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['tmp_name']=<span>$arr</span>['tmp_name'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['error']=<span>$arr</span>['error'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['size']=<span>$arr</span>['size'][<span>$i</span><span>];
    }

    </span><span>print_r</span>(<span>$files</span>);<br />?>
Copy after login

The rest is simple. Just repeat the steps of uploading a single file and iterate through the array.

The code is as follows:

<?<span>php
    

    </span><span>//</span><span>print_r($_FILES['file']);</span>
    <span>$arr</span>=<span>$_FILES</span>['file'<span>];
    </span><span>$files</span>=<span>array</span><span>();
    </span><span>for</span>(<span>$i</span>=0;<span>$i</span><<span>count</span>(<span>$arr</span>['name']);<span>$i</span>++){<span>//</span><span>count()统计数组键值name长度</span>
        <span>$files</span>[<span>$i</span>]['name']=<span>$arr</span>['name'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['type']=<span>$arr</span>['type'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['tmp_name']=<span>$arr</span>['tmp_name'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['error']=<span>$arr</span>['error'][<span>$i</span><span>];
        </span><span>$files</span>[<span>$i</span>]['size']=<span>$arr</span>['size'][<span>$i</span><span>];
    }

    </span><span>for</span>(<span>$i</span>=0;<span>$i</span><<span>count</span>(<span>$files</span>);<span>$i</span>++<span>){
    </span><span>//</span><span>取得上传文件信息</span>
    <span>$fileName</span>=<span>$files</span>[<span>$i</span>]['name'<span>];
    </span><span>$fileType</span>=<span>$files</span>[<span>$i</span>]['type'<span>];
    </span><span>$fileError</span>=<span>$files</span>[<span>$i</span>]['type'<span>];
    </span><span>$fileSize</span>=<span>$files</span>[<span>$i</span>]['size'<span>];
    </span><span>$tempName</span>=<span>$files</span>[<span>$i</span>]['tmp_name'];<span>//</span><span>临时文件名
    
    //定义上传文件类型</span>
    <span>$typeList</span> = <span>array</span>("image/jpeg","image/jpg","image/png","image/gif"); <span>//</span><span>定义允许的类型</span>

    <span>if</span>(<span>$fileError</span>>0<span>){
            </span><span>//</span><span>上传文件错误编号判断</span>
            <span>switch</span> (<span>$fileError</span><span>) {
                </span><span>case</span> 1:
                    <span>$message</span>="上传的文件超过了php.ini 中 upload_max_filesize 选项限制的值。"<span>; 
                    </span><span>break</span><span>;
                </span><span>case</span> 2:
                    <span>$message</span>="上传文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值。"<span>; 
                    </span><span>break</span><span>;
                </span><span>case</span> 3:
                    <span>$message</span>="文件只有部分被上传。"<span>; 
                    </span><span>break</span><span>;
                </span><span>case</span> 4:
                    <span>$message</span>="没有文件被上传。"<span>;
                    </span><span>break</span><span>;
                </span><span>case</span> 6:
                    <span>$message</span>="找不到临时文件夹。"<span>; 
                    </span><span>break</span><span>;
                </span><span>case</span> 7:
                    <span>$message</span>="文件写入失败"<span>; 
                    </span><span>break</span><span>;
                </span><span>case</span> 8:
                    <span>$message</span>="由于PHP的扩展程序中断了文件上传"<span>;
                    </span><span>break</span><span>;
            }

            </span><span>exit</span>("文件上传失败:".<span>$message</span><span>);

        }
    </span><span>if</span>(!<span>is_uploaded_file</span>(<span>$tempName</span><span>)){
        </span><span>//</span><span>判断是否是POST上传过来的文件</span>
        <span>exit</span>("不是通过HTTP POST方式上传上来的"<span>);
    }</span><span>else</span><span>{
        </span><span>if</span>(!<span>in_array</span>(<span>$fileType</span>, <span>$typeList</span><span>)){
            </span><span>exit</span>("上传的文件不是指定类型"<span>);
        }</span><span>else</span><span>{
            </span><span>if</span>(!<span>getimagesize</span>(<span>$tempName</span><span>)){
                </span><span>//</span><span>避免用户上传恶意文件,如把病毒文件扩展名改为图片格式</span>
                <span>exit</span>("上传的文件不是图片"<span>);
            }
        }
            </span><span>if</span>(<span>$fileSize</span>>1000000<span>){
                </span><span>//</span><span>对特定表单的上传文件限制大小</span>
                <span>exit</span>("上传文件超出限制大小"<span>);
            }</span><span>else</span><span>{
                </span><span>//</span><span>避免上传文件的中文名乱码</span>
                <span>$fileName</span>=<span>iconv</span>("UTF-8", "GBK", <span>$fileName</span>);<span>//</span><span>把iconv抓取到的字符编码从utf-8转为gbk输出</span>
                <span>$fileName</span>=<span>str_replace</span>(".", <span>time</span>().".", <span>$fileName</span>);<span>//</span><span>在图片名称后加入时间戳,避免重名文件覆盖</span>
                <span>if</span>(<span>move_uploaded_file</span>(<span>$tempName</span>, "uploads/".<span>$fileName</span><span>)){
                    </span><span>echo</span> "上传文件成功!"<span>;
                }</span><span>else</span><span>{
                    </span><span>echo</span> "上传文件失败"<span>;
                }
            }

        }

    }
</span>?>
Copy after login

The effect is as follows:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/853717.htmlTechArticlePHP multi-file upload operation. In the previous article, I talked about the PHP file upload principle and simple operation examples. Single file upload. http://www.cnblogs.com/lichenwei/p/3879566.html Actually...
Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

See all articles