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.
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.
|
|
|||||
|
|
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. |
|||
|
|
|
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:
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. |
|||
|
|
