Home>Article>Backend Development> How to upload and replace images with PHP?

How to upload and replace images with PHP?

coldplay.xixi
coldplay.xixi Original
2020-07-24 14:52:19 2159browse

PHP method to upload and replace images: first create two files; then a hidden field is needed to limit the maximum length of the uploaded file; then first determine whether the file type is an image format, and if so, upload the file; finally Just upload the file to and replace the specified file.

How to upload and replace images with PHP?

PHP method to upload and replace images:

First create two files: change.html and change .php

change.htmlThe form code of the file is as follows:

  change file example.  
文件:

There are several things to pay attention to here, first look at this sentence

Here we use the POST method. Some browsers also support the PUT method. Of course, this requires modifying the script, which I do not recommend.enctype="multipart/form-datamust be set in the form, so that the server knows that the uploaded file contains regular form information. Remember, this must be set.

In addition, it is also required A hidden field to limit the maximum length of uploaded files:cf0d3d6ea3f6050b67efec7d0a3cf718, where name must be set toMAX_FILE_SIZE, its value is the maximum length of the uploaded file, the unit is B, here I limit it to 2M.

Look at this sentence again:

type="file" explains the file type, such a The basic file upload interface is complete. Next, we will talk about how to use PHP to process uploaded files. In addition, the maximum length of uploaded files set in your php.ini may affect your actual upload. Please modify it according to the actual situation. In addition, PHP uploads are first uploaded to the temporary directory and then moved to the specified directory; the temporary directory can be modified as needed, or the default value can be used.

The following is the form submission change.php file code , let’s take a look at what this file contains:

您的文件已经上传完毕 上传图片预览: 
"; } }else{ echo "
上传失败,文件大于2M,请重新上传!
"; } }else{ $text = implode(",", $type); echo "
您只能上传以下类型文件:", $text, "

"; // echo ""; } } changeFile("./files/1.png");

You may be a little dizzy when you first read these~~, if you look at it slowly, you will find that this thing is actually SO EASY!!

Let’s talk first Based on the following principle, this program takes uploading pictures as an example. It first determines whether the file type is an image format. If so, uploads the file, then uploads the file to and replaces the specified file. If the upload is successful, a preview of the uploaded picture will be output. Here are some functions in the program Let’s make some explanations.

Let’s first look at

substr(strrchr($newfile, '.'), 1)

strrchar()What is the function? Let me give you an example, such as a picture file pic.jpg. We use strrchar() to process, strrchr(pic.jpg,'.'), it will return.jpg, do you understand? This function returns the character after the last position of the specified character in the string String. With substr(), we can get jpg, so that we can get the suffix name of the file to determine whether the uploaded file conforms to the specified format. This program puts the specified format in an array, which can be used as needed in actual use Add.

Next, we call the function to determine the file type and convert it to lowercasestrtolower($_FILES['file']['name']), here There is a very critical thing $_FILES, which is a super global array that saves the form data that needs to be processed. Ifregister_globalsis turned on, you can also access it directly, but this is unsafe. Look at the one just now Upload interfacefa68a6172e90ddc4102f2ff67a357dc2, according to this form name, we can get a lot of information:

  • $_FILES[ 'file']['name']--Get the file name

  • $_FILES['file']['tmp_name']--Get the temporary storage location

  • $_FILES['file']['size']--get the file size

  • $_FILES['file']['type']--get File MIME type

With this information, you can easily determine the file information. Isn’t it very convenient? ^_^, there are some functions that need to be understood next,

  • file_exists()--determine whether the specified directory exists. If it does not exist, of course we cannot upload it

  • is_uploaded_file--Determine whether the file has been uploaded through HTTP POST

  • move_uploaded_file--Move the uploaded file to the specified directory

Success Upload, we will output a preview, otherwise the output upload will fail

Related learning recommendations:PHP programming from entry to proficiency

The above is the detailed content of How to upload and replace images with PHP?. For more information, please follow other related articles on the PHP Chinese website!

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