Increase max_execution_time in PHP?

后端 未结 4 1696
长发绾君心
长发绾君心 2020-11-27 17:25

I\'m trying to upload large files to my server (my server support post_max_size 192mb and max_execution_time 600 sec). When I upload 100mb files ex

4条回答
  •  广开言路
    2020-11-27 17:46

    Is very easy, this work for me:

    PHP:

    set_time_limit(300); // Time in seconds, max_execution_time
    

    Here is the PHP documentation

提交回复
热议问题