Answers for "php increase max execution time in function"

PHP
2

php code to increase maximum execution time

ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
ini_set('max_execution_time', '0'); // for infinite time of execution
Posted by: Guest on June-30-2020
4

php max_execution_time

ini_set ( 'max_execution_time', -1); //unlimit
Posted by: Guest on June-04-2021

Code answers related to "php increase max execution time in function"

Browse Popular Code Answers by Language