PHP configuration: max_execution_time and max_input_time

后端 未结 3 1896
忘了有多久
忘了有多久 2021-01-14 12:36

Can I set the following PHP configuration parameters as follows:

max_execution_time = 360 max_input_time 360

Is that safe and efficient ?

I actually

3条回答
  •  伪装坚强ぢ
    2021-01-14 12:45

    In my case, max_input_time does affect my move_uploaded_file function. I failed to upload a 3GB file with default setting (max_input_time=60) but it succeeded with a larger value (max_input_time=300).

    My PHP version is 7.2.19 on LAMP enviroment.

提交回复
热议问题