How to determine the max file upload limit in php

前端 未结 6 1462
渐次进展
渐次进展 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:08

    You can set Maximum file upload size using ini_set()

      ini_set('post_max_size', '64M');
      ini_set('upload_max_filesize', '64M');
    

    or using the .htaccess file

    php_value upload_max_filesize 
    php_value post_max_size 
    

提交回复
热议问题