Answers for "how to exceed maximum execution time in php"

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
0

max_execution_time php

ini_set ( 'max_execution_time', 1200); //1200 is time in secondss
Posted by: Guest on October-29-2020

Code answers related to "how to exceed maximum execution time in php"

Browse Popular Code Answers by Language