search

In PHP, users can upload files using file upload feature, and the file that has to be submitted through the form and is easily attached and uploaded. The user can upload many types of files may that be document form, image form, pdf form, etc. These kind of files come with an extension i.e. .docx, .jpeg, .pdf, etc. This kind of file is validated by the form and the size of the file is set so that not more than that size is allowed to upload. This is an advanced feature for the user who used to enter data manually is now opting for this option.

How to Create and Upload File in PHP?

With PHP, it is very easy to upload files to the server using a form and the data is also secure compared to others. The configuration file “php.ini” file has a variable that has to be set for the files to be uploaded and it is called “file_uploads” which should be set ON to enable the upload feature. There are a few steps for us to do for uploading a file in the server.

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

There are few checks before a file gets uploaded to the server using a form. These checks are called validation of the file that is uploaded.

Below are some important points that the developer codes to validate the form:

Upload a File in PHP

1. File_uploads

The value of this variable should be ON for the files to be uploaded. If it is not ON then the file cannot be uploaded in the server. So, it should be always ON.

2. Upload Max Size

This directive is used to configure the maximum size of the file that can be uploaded in the server using a form. It is a kind of check done to see the file size of the user uploaded. The default size of the file is set to 2M (two megabytes), and we can overwrite this kind of setting using the .htaccess file where the developer can increase the size of the file. Two megabytes isn’t that much in today’s standards, so we might have to increase this. If you get an error that states that the file size exceeds upload_max_filesize when trying to upload a file, you need to increase the value. If you do, be very sure to also increase post_max_size.

3. Upload_tmp_dir

It sets a temporary directory that will be used to store the uploaded files by the user. In most cases, but we don’t have to worry about this setting. If we don’t set it, the system default will automatically set the temp directory that can be used.

4. Post_max_size

The post_max_size directive allows us to set the maximum size of data uploaded by the POST method. Since files are getting uploaded by POST requests, the value must be greater than what we have set for upload_max_filesize. For example, if the upload_max_filesize is 20M (20 megabytes), we might need to set the post_max_size to 24M.

5. Max_file_uploads

It allows you to set the maximum number of files that can be uploaded by the user at a single go. The default count is 20 for the user at a time.

6. Max_input_time

It’s the number of seconds a script is allowed to parse the input data by the user. We should set it to a reasonable value if we are dealing with a large size of file uploads. 60 (60 seconds) and is a good value for most apps.

7. Memory_limit

The memory limit directive indicates that the maximum amount of memory a script can consume in the server. If we are facing any issues during any upload of large files, we need to set the value of the directive greater than what we have set for the post_max_size directive. By default, the value is set as 128M (128 megabytes), so unless we have a very large post_max_size and upload_max_filesize, we don’t have to worry about it.

8. Max_execution_time

This directive is used for a maximum number of seconds a script is allowed to run in the server. If we are facing any issues during any uploading of large files, we can consider increasing the value to more seconds like 60 (1 minute) and that should work well for most applications.

Examples to Upload File in PHP

Given below are the examples mentioned::

Example #1

Code:



Select any image to upload:

Output:

Upload a File in PHP

Example #2

Code:



<title>Photo Upload Form</title>


Upload File

Note: Only .jpg, .jpeg, .gif, .png formats allowed to a max size of 2 MB larger than that cannot not be uploaded.

Output:

Upload a File in PHP

Example #3

Code:



Select a file to upload:

Output:

Upload a File in PHP

Example #4

Code:

<?php $target_path = "c:/";
$target_path = $target_path.basename( $_FILES['fileToUpload']['name']);
if(move_uploaded_file($_FILES['fileToUpload']['tmp_name'], $target_path)) {
echo "File has been uploaded successfully!";
}
else
{
echo "Sorry, file not uploaded, please check and try again!";
}
?>

Output:

Upload a File in PHP

In the above examples, the user can see the screen that is present in the snapshots. Users will attach the document by clicking the “choose file” option. The file will get attached once the user selects the file from his local machine and clicks on the Upload button to submit the documents to the server. The user will then be prompted a message stating that the file has been uploaded successfully.

Conclusion

In this article, we discussed how a user can upload a file to the server using the form and how an uploaded file can be validated in various forms, and the server restrictions for uploading a file. The user might not understand the process of the backend but the developer has to code in such a way that the document uploaded by the user should be correct and the data is secured.

The above is the detailed content of Upload a File in 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
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怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

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

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

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

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!