PHP code to upload multiple images and verify them_PHP tutorial

WBOY
Release: 2016-07-13 10:28:04
Original
890 people have browsed it

Uploading a single image is not complicated. This involves uploading multiple images and verifying the image format to ensure that only images are uploaded and to prevent other files from being uploaded to the server.

The basic implementation algorithm is to use the form of an array, submit all the pictures into an array, and process the elements of the array one by one.

The following is the quoted content:

// Picture directory

$img_dir = "../upload/";

// …… html display upload interface

 /* Image upload processing */

// Transfer the image to the server

// Initialize variables

 $uploaded = 0;

 $unuploaded = 0;

//Only five pictures are allowed to be uploaded

 for ($i=0; $i<=5; $i++)

 {

//Get information about the current picture

$is_file = $_FILES['imgfile']['name'][$i];

//If the current picture is not empty

 if (!empty($is_file))

 {

// Store the current picture information into variables

 $result[$i] = "

 ".$_FILES['imgfile']['name'][$i] ."

 ". round($_FILES['imgfile']['size'][$i]/1024, 2) ."K

 ".$_FILES['imgfile']['type'][$i] ."

 ";

// Determine whether the type of the uploaded image is one of jpg, gif, png, and bmp, and determine whether the upload is successful

if (

 $_FILES['imgfile']['type'][$i] == "image/pjpeg" ||

 $_FILES['imgfile']['type'][$i] == "image/gif" ||

 $_FILES['imgfile']['type'][$i] == "image/x-png" ||

 $_FILES['imgfile']['type'][$i] == "image/bmp"

 )

 {

//If the uploaded file does not exist on the server

 if (!file_exists($img_dir . $_FILES['imgfile']['name'][$i]))

 {

//Transfer the image files from the temporary folder to the directory we specify for uploading

move_uploaded_file($_FILES['imgfile']['tmp_name'][$i],

$img_dir . $_FILES['imgfile']['name'][$i]);

 $result[$i] .= "Success";

 $uploaded++;

 }

else //If the file already exists on the server

 {

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/814351.htmlTechArticleUploading a single image is not complicated. This involves uploading multiple images and verifying the image format. , to ensure that only images are uploaded, and to prevent other files from being uploaded to the server. Basic reality...
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!