douyong1974 2010-05-05 12:44
浏览 218
已采纳

如何在php中动态更改最大上传文件限制?

I want to change the max upload file limit dynamically. means by not changing the php.ini file on server.
Whenever user had uploaded more then 2 mb then my upload limit should be change.
I want to do all this through php.

Thanks in advance.

  • 写回答

3条回答 默认 最新

  • dos71253 2010-05-05 12:47
    关注

    Try this:

    ini_set('upload_max_filesize', your_value_here);
    

    Make sure also that you have specified the correct acceptable settings for:

    • file_uploads
    • upload_max_filesize
    • max_input_time
    • memory_limit
    • max_execution_time
    • post_max_size
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?