How to determine the max file upload limit in php

前端 未结 6 1473
渐次进展
渐次进展 2020-12-14 03:55

How can the file upload size allowed by php settings be determined withing a php script?

6条回答
  •  情书的邮戳
    2020-12-14 04:22

    You can also change that size at runtime using the .htaccess file without the need to change your php.ini file

    php_value upload_max_filesize 1224M
    php_value post_max_size 1224M
    php_value max_execution_time 3000
    php_value max_input_time 3000
    

    copy that code and put your file, then store that file with index file then you run your project you also capable to upload 1GB file

    for more detail read this article

提交回复
热议问题