Answers for "set_time_limit php que es"

PHP
4

php time limit

set_time_limit(120); // Time in seconds
set_time_limit(0);   // unlimited
Posted by: Guest on September-07-2021
1

PHP time limit (max_execution_time):

1- Increasing PHP Time Limit via PHP.ini file

	max_execution_time = 300;

2- Alternative to editing PHP.ini through wp-config.php
  
  	set_time_limit(300);

3- Modifying the .htaccess file
  
  	max_execution 300
Posted by: Guest on November-27-2021

Browse Popular Code Answers by Language