search
HomeBackend DevelopmentPHP TutorialDetailed explanation of the application and principle of php file upload_PHP tutorial
Detailed explanation of the application and principle of php file upload_PHP tutorialJul 13, 2016 am 10:50 AM
phppostuploadseveralprincipleandapplicationSkilldocumentofKnowformDetailed explanation

You must know several tricks to upload files in php. One must be the data posted by the form, then accepted by php move_uploaded_file, and then saved to the specified path on the server.

1.form tag enctype attribute.

2.$_FILES system function. //Convert the uploaded content into an array.

3.move_uploaded_file function. //Move the uploaded files stored in the cache folder to the specified folder.

4.is_uploaded_file function. //Determine whether it exists.

------------------------------------------

1.form tag

Format:


       

2.$_FILES system function
$_FILES['name'] //The original file name of the file uploaded by the client.
$_FILES['type'] //MIME type of file, such as: "image/gif"
$_FILES['size'] //Upload file size in bytes.
$_FILES['tmp_name'] //Temporary file name, usually the default.
$_FILES['error'] //Upload related situation code (0: Success, 1: Exceeds the size set by php.ini. 2: Exceeds the size specified by the PHP file code. 3: Only part of the file is uploaded. 4: No file is uploaded .5: The uploaded file size is 0)

3.move_uploaded_file function
Function to move files to the target location after uploading
move_uploaded_file (temporary file, target location and file name;)

4.is_uploaded_file function
Function to determine the uploaded MIME type of file
is_uploaded_file(MIME);

------------------------------------------

Example:

The code is as follows Copy code
 代码如下 复制代码


  

 

Attention

1. enctype="multipart/form-data" must be specified in the form to let the server know that the file contains regular form information.
2. There must be a form area where the maximum length of the uploaded file can be set, that is, the maximum value of the uploaded file (calculated in bytes). It is a hidden value field, that is, max_file_size. By setting its Value (value), the uploaded file can be limited. size, to avoid the hassle of users spending time waiting for a large file to be uploaded only to discover that the file is too large. But generally others can bypass this value, so for safety reasons, it is best to configure the upload_max_filesize option in the php.ini file to set the size of the file upload. The default is 2M

The code is as follows Copy code
 代码如下 复制代码

function uploadfile($type,$name,$ext,$size,$error,$tmp_name,$targetname,$upload_dir)
{
    $MAX_SIZE = 2000000;
    $FILE_MIMES = array('image/pjpeg','image/jpeg','image/jpg','image/gif','image/png');
    $FILE_EXTS = array('.jpg','.gif','.png','.JPG','.GIF','.PNG');

    $file_path = $upload_dir.$targetname;
   
    if(!is_dir($upload_dir))
    {
        if(!mkdir($upload_dir))
            die("文件上传目录不存在并且无法创建文件上传目录");
        if(!chmod($upload_dir,0755))
            die("文件上传目录的权限无法设定为可读可写");
    }
   
    if($size>$MAX_SIZE)
        die("上传的文件大小超过了规定大小");

    if($size == 0)
        die("请选择上传的文件");

    if(!in_array($type,$FILE_MIMES) || !in_array($ext,$FILE_EXTS))
        die("请上传符合要求的文件类型");

    if(!move_uploaded_file($tmp_name, $file_path))
        die("复制文件失败,请重新上传");

    switch($error)
    {
        case 0:
            return ;
        case 1:
            die("上传的文件超过了 php.ini 中 upload_max_filesize 选项限制的值");
        case 2:
            die("上传文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值");
        case 3:
            die("文件只有部分被上传");
        case 4:
            die("没有文件被上传");
    }
}

function uploadfile($type,$name,$ext,$size,$error,$tmp_name,$targetname,$upload_dir)

{ $MAX_SIZE = 2000000; $FILE_MIMES = array('image/pjpeg','image/jpeg','image/jpg','image/gif','image/png');

$FILE_EXTS = array('.jpg','.gif','.png','.JPG','.GIF','.PNG');
 代码如下 复制代码

只需将


 

改成



$file_path = $upload_dir.$targetname;   If(!is_dir($upload_dir)) {           if(!mkdir($upload_dir)) die("The file upload directory does not exist and the file upload directory cannot be created"); If(!chmod($upload_dir,0755)) ​​​​​​die("The permissions of the file upload directory cannot be set to read and write"); }   If($size>$MAX_SIZE) ​​​​die("The uploaded file size exceeds the specified size"); if($size == 0)            die("Please select the file to upload"); if(!in_array($type,$FILE_MIMES) || !in_array($ext,$FILE_EXTS))             die("Please upload a file type that meets the requirements"); if(!move_uploaded_file($tmp_name, $file_path))               die("Failed to copy file, please upload again"); switch($error) { case 0: Return ; case 1:                     die("The uploaded file exceeds the value limited by the upload_max_filesize option in php.ini"); case 2: die("The size of the uploaded file exceeds the value specified by the MAX_FILE_SIZE option in the HTML form"); case 3: die("Only part of the file was uploaded"); case 4:                die("No files were uploaded"); } }
How to upload multiple files? For example, upload 3 files at the same time
The code is as follows Copy code
Just replace changed to

Correspondingly, when calling this function, $_FILES['userfile']['name'][0] represents the relevant file information of the first file, and so on, and the same for others.

Some php performance configurations, we can modify them if necessary

max_execution_time = 30; The maximum time value (seconds) for each PHP page to run, the default is 30 seconds
max_input_time = 60; The maximum time required for each PHP page to receive data, the default is 60 seconds
memory_limit = 128m; The maximum memory consumed by each PHP page, the default is 128M. If it feels too small, you can set it larger. 128 is enough.
max_execution_time = 600
max_input_time = 600
upload_max_filesize = 32m
post_max_size = 32m

If the file size is limited we can solve it as follows

Open php.ini and first find

file_uploads = on ; Switch whether to allow file uploads via HTTP. The default is ON

upload_tmp_dir; Files are uploaded to the server where temporary files are stored. If not specified, the system default temporary folder will be used

upload_max_filesize = 8m; Wangwen business, that is, the maximum value of the file size allowed to be uploaded. Default is 2M

post_max_size = 8m; refers to the maximum value that can be received through POST to PHP through the form, including all values ​​in the form. The default is 8M

Generally, after setting the above four parameters, uploading a file of

But if you want to upload a large file >8M, it will definitely work if you only set the above four items.


Further configure the following parameters

max_execution_time = 600; The maximum time value (seconds) for each PHP page to run, the default is 30 seconds

max_input_time = 600; The maximum time required for each PHP page to receive data, the default is 60 seconds

memory_limit = 8m; The maximum memory consumed by each PHP page, the default is 8M

After modifying the above parameters, you can upload large files under normal circumstances allowed by the network

max_execution_time = 600
max_input_time = 600
memory_limit = 32m
file_uploads = on
upload_tmp_dir = /tmp
upload_max_filesize = 32m
post_max_size = 32m

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632639.htmlTechArticleYou must know several tricks to upload files in php. One must be to post the data in the form, and then move_uploaded_file by php After accepting it, save it to the specified path on the server. ...
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(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.