downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Problemas comuns> <Upload de arquivos com o método POST
Last updated: Fri, 06 Nov 2009

view this page in

Explicação das mensagens de erro

Desde o PHP 4.2.0, PHP retorna um código de erro apropriado na array do arquivo. O código de erro pode ser encontrado em ['error'] na array que é criada durante o upload do arquivo. Em outras palavras, o erro deve ser encontrado em $_FILES['userfile']['error'].

UPLOAD_ERR_OK

Valor: 0; não houve erro, o upload foi bem sucedido.

UPLOAD_ERR_INI_SIZE

Valor 1; O arquivo no upload é maior do que o limite definido em upload_max_filesize no php.ini.

UPLOAD_ERR_FORM_SIZE

Valor: 2; O arquivo ultrapassa o limite de tamanho em MAX_FILE_SIZE que foi especificado no formulário HTML.

UPLOAD_ERR_PARTIAL

Valor: 3; o upload do arquivo foi feito parcialmente.

UPLOAD_ERR_NO_FILE

Valor: 4; Não foi feito o upload do arquivo.

Nota: Estas tornaram-se constantes no PHP 4.3.0



Problemas comuns> <Upload de arquivos com o método POST
Last updated: Fri, 06 Nov 2009
 
add a note add a note User Contributed Notes
Explicação das mensagens de erro
jille at quis dot cx
24-May-2009 03:12
UPLOAD_ERR_PARTIAL is given when the mime boundary is not found after the file data. A possibly cause for this is that the upload was cancelled by the user (pressed ESC, etc).
Schoschie (nh t ngin dott de)
26-Apr-2009 04:43
Why make stuff complicated when you can make it easy?

[Edit of edit by danbrown AT php DOT net: This code is a fixed version of a note originally submitted by (Thalent, Michiel Thalen) on 04-Mar-2009.]

<?php

function file_upload_error_message($error_code) {
    switch (
$error_code) {
        case
UPLOAD_ERR_INI_SIZE:
            return
'The uploaded file exceeds the upload_max_filesize directive in php.ini';
        case
UPLOAD_ERR_FORM_SIZE:
            return
'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form';
        case
UPLOAD_ERR_PARTIAL:
            return
'The uploaded file was only partially uploaded';
        case
UPLOAD_ERR_NO_FILE:
            return
'No file was uploaded';
        case
UPLOAD_ERR_NO_TMP_DIR:
            return
'Missing a temporary folder';
        case
UPLOAD_ERR_CANT_WRITE:
            return
'Failed to write file to disk';
        case
UPLOAD_ERR_EXTENSION:
            return
'File upload stopped by extension';
        default:
            return
'Unknown upload error';
    }
}

// Example
if ($_FILES['file']['error'] === UPLOAD_ERR_OK)
   
// upload ok
else
   
$error_message = file_upload_error_message($_FILES['file']['error']);

?>
Anonymous
05-Mar-2009 02:32
[EDIT BY danbrown AT php DOT net: This code is a fixed version of a note originally submitted by (Thalent, Michiel Thalen) on 04-Mar-2009.]


This is a handy exception to use when handling upload errors:

<?php

class UploadException extends Exception
{
    public function
__construct($code) {
       
$message = $this->codeToMessage($code);
       
parent::__construct($message, $code);
    }

    private function
codeToMessage($code)
    {
        switch (
$code) {
            case
UPLOAD_ERR_INI_SIZE:
               
$message = "The uploaded file exceeds the upload_max_filesize directive in php.ini";
                break;
            case
UPLOAD_ERR_FORM_SIZE:
               
$message = "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form";
                break;
            case
UPLOAD_ERR_PARTIAL:
               
$message = "The uploaded file was only partially uploaded";
                break;
            case
UPLOAD_ERR_NO_FILE:
               
$message = "No file was uploaded";
                break;
            case
UPLOAD_ERR_NO_TMP_DIR:
               
$message = "Missing a temporary folder";
                break;
            case
UPLOAD_ERR_CANT_WRITE:
               
$message = "Failed to write file to disk";
                break;
            case
UPLOAD_ERR_EXTENSION:
               
$message = "File upload stopped by extension";
                break;

            default:
               
$message = "Unknown upload error";
                break;
        }
        return
$message;
    }
}

// Use
 
if ($_FILES['file']['error'] === UPLOAD_ERR_OK) {
//uploading successfully done
} else {
throw new
UploadException($_FILES['file']['error']);
}
?>
info at foto50 dot com
03-Jul-2007 09:03
For those reading this manual in german (and/or probably some other languages) and you miss error numbers listed here, have a look to the english version of this page ;)
belowtherim2000 at yahoo dot com
21-Jun-2007 01:25
I've been playing around with the file size limits and with respect to the post_max_size setting, there appears to be a hard limit of 2047M.  Any number that you specify above that results in a failed upload without any informative error describing what went wrong.  This happens regardless of how small the file you're uploading may be.  On error, my page attempts to output the name of the original file.  But what I discovered is that this original file name, which I maintained in a local variable, actually gets corrupted.  Even my attempt to output the error code in $_FILES['uploadedfiles']['error'] returns an empty string/value.

Hopefully, this tidbit will save someone else some grief.
svenr at selfhtml dot org
23-Apr-2007 10:15
Clarification on the MAX_FILE_SIZE hidden form field and the UPLOAD_ERR_FORM_SIZE error code:

PHP has the somewhat strange feature of checking multiple "maximum file sizes".

The two widely known limits are the php.ini settings "post_max_size" and "upload_max_size", which in combination impose a hard limit on the maximum amount of data that can be received.

In addition to this PHP somehow got implemented a soft limit feature. It checks the existance of a form field names "max_file_size" (upper case is also OK), which should contain an integer with the maximum number of bytes allowed. If the uploaded file is bigger than the integer in this field, PHP disallows this upload and presents an error code in the $_FILES-Array.

The PHP documentation also makes (or made - see bug #40387 - http://bugs.php.net/bug.php?id=40387) vague references to "allows browsers to check the file size before uploading". This, however, is not true and has never been. Up til today there has never been a RFC proposing the usage of such named form field, nor has there been a browser actually checking its existance or content, or preventing anything. The PHP documentation implies that a browser may alert the user that his upload is too big - this is simply wrong.

Please note that using this PHP feature is not a good idea. A form field can easily be changed by the client. If you have to check the size of a file, do it conventionally within your script, using a script-defined integer, not an arbitrary number you got from the HTTP client (which always must be mistrusted from a security standpoint).
abuse dot bernhardkroll at arcor dot de
06-Apr-2007 01:08
For a multifile upload try this:

<?php

foreach($_FILES as $file)
{
    if(
$file['error'] == 0 && $file['size'] > 0)
    {
       
move_uploaded_file($file['tmp_name'], $targetdir.$file['name']);
    }
}

?>
web att lapas dott id dott lv
23-Feb-2007 01:49
1. And what about multiple file upload ? - If there is an UPLOAD_ERR_INI_SIZE error with multiple files - we can`t detect it normaly ? ...because that we have an array, but this error returns null and can`t use foreach. So, by having a multiple upload, we can`t normaly inform user about that.. we can just detect, that sizeof($_FILES["file"]["error"]) == 0 , but we can`t actualy return an error code. The max_file_size also is not an exit, becouse it refers on each file seperatly, but upload_max_filesize directive in php.ini refers to all files together. So, for example, if upload_max_filesize=8Mb , max_file_size = 7Mb and one of my files is 6.5Mb and other is 5Mb, it exeeds the upload_max_filesize - cant return an error, becouse we don`t know where to get that error.
Unfortunately we cannot get the file sizes on client side, even AJAX normaly can`t do that.

2. If in file field we paste something, like, D:\whatever , then there also isn`t an error to return in spite of that no such file at all.
stephen at poppymedia dot co dot uk
26-Sep-2005 10:05
if post is greater than post_max_size set in php.ini

$_FILES and $_POST will return empty
adam at gotlinux dot us
27-May-2005 02:28
This is probably useful to someone.

<?php
array(
       
0=>"There is no error, the file uploaded with success",
       
1=>"The uploaded file exceeds the upload_max_filesize directive in php.ini",
       
2=>"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
       
3=>"The uploaded file was only partially uploaded",
       
4=>"No file was uploaded",
       
6=>"Missing a temporary folder"
);
?>
sysadmin at cs dot fit dot edu
16-Feb-2005 03:13
I noticed that on PHP-4.3.2 that $_FILES can also not be set if the file uploaded exceeds the limits set by upload-max-filesize in the php.ini, rather than setting error $_FILES["file"]["error"]
krissv at ifi.uio.no
28-Jan-2005 12:11
When $_FILES etc is empty like Dub spencer says in the note at the top and the error is not set, that might be because the form enctype isnt sat correctly. then nothing more than maybe a http server error happens.

enctype="multipart/form-data" works fine
Dub Spencer
26-Nov-2004 02:56
Upload doesnt work, and no error?

actually, both $_FILES and $_REQUEST in the posted to script are empty?

just see, if  "post_max_size" is lower than the data you want to load.

in the apache error log, there will be an entry like "Invalid method in request". and in the access log, there will be two requests: one for the POST, and another that starts with all "----" and produces a 501.
tyler at fishmas dot org
04-Nov-2004 03:08
In regards to the dud filename being sent, a very simple way to check for this is to check the file size as well as the file name.  For example, to check the file size simple use the size attribute in your file info array:

<?php
if($_FILES["file_id"]["size"]  == 0)
{
        
// ...PROCESS ERROR
}
?>

Problemas comuns> <Upload de arquivos com o método POST
Last updated: Fri, 06 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites