Answers for "increase php execution time and memory limit"

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

php remove execution time limit

set_time_limit(0)
Posted by: Guest on October-04-2021

Code answers related to "increase php execution time and memory limit"

Browse Popular Code Answers by Language