PHP - Maximum Total Upload Size?

后端 未结 10 1431
说谎
说谎 2020-12-09 13:58

I have a php web page with 15 fields. The user will use it to upload images. I tested this by uploading 15 jpg images, each about 2 M, without any problems. On the day I

10条回答
  •  时光说笑
    2020-12-09 14:07

    There are bunch of PHP settings limiting the upload process:

    • file_uploads
    • upload_max_filesize
    • max_input_time
    • memory_limit
    • max_execution_time
    • post_max_size

    I'd suggest reading this page: http://www.radinks.com/upload/config.php

    While it's true many of these don't limit upload size, they do put a cap on the upload process - e.g. if memory limit is too low, then you'll have problems uploading big files that need to stay in memory for a little period of time.

提交回复
热议问题