Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any way to get file size of attempted upload when you get UPLOAD_ERR_INI_SIZE? That is when file being uploaded exceeded upload_max_filesize directive in php.ini.

share|improve this question
1  
It stops processing the upload when the limit is exceeded. – MetalFrog Feb 21 '12 at 13:59

2 Answers

up vote 2 down vote accepted

You may consider using $_SERVER['CONTENT_LENGTH']. It has some overhead and represents the total size of a POST request, but in some situations this will be acceptable.

share|improve this answer

No.

There“s no way to control PHP core behavior. When a upload fail, the temporary file is deleted, and the array returns an error, without the file size:

Array
(
    [uploadedfile] => Array
        (
            [name] => SManager.chm
            [type] => 
            [tmp_name] => 
            [error] => 1
            [size] => 0
        )

)

When you go back to move_uploaded_file() or copy(), we dont have the temp file and any other information besides the error, and the name of the origin file.

You can always grab PHP source code, modify it, compile and have this values returned. But, not as a standard.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.