How to increase maximum execution time in php [dup

2019-01-02 15:56发布

问题:

This question already has an answer here:

  • Increase PHP Script Execution Time [duplicate] 1 answer

I want to increase maximum execution time in php , not by changing php.ini file.

I want to Increase it from my php file.

Is this possible?

回答1:

ini_set('max_execution_time', 300); //300 seconds = 5 minutes
ini_set('max_execution_time', 0); // for infinite time of execution 

Place this at the top of your PHP script and let your script loose!

Taken from Increase PHP Script Execution Time Limit Using ini_set()



回答2:

use below statement if safe_mode is off

set_time_limit(0);


回答3:

Use the PHP function

void set_time_limit ( int $seconds )

The maximum execution time, in seconds. If set to zero, no time limit is imposed.

This function has no effect when PHP is running in safe mode. There is no workaround other than turning off safe mode or changing the time limit in the php.ini.



回答4:

You can try to set_time_limit(n). However, if your PHP setup is running in safe mode, you can only change it from the php.ini file.



标签: