Answers for "how to avoid maximum execution time in php with for loop"

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
1

max execution time exceeded php

ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
Posted by: Guest on August-13-2021

Code answers related to "how to avoid maximum execution time in php with for loop"

Browse Popular Code Answers by Language