PHP - Maximum Total Upload Size?

后端 未结 10 1619
说谎
说谎 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:24

    It's a setting in php.ini. You can look in the output of php info for the field labeled "upload_max_filesize". To get a php info page, create a php file with the following code:

    
    

    This post at php.net gives you sample code to get that information, and the rest of the page is a treasure trove of php configuration options.

提交回复
热议问题