Home > Article > Backend Development > How to set the maximum execution time of php in iis7
iis7 Method to set the maximum execution time of PHP: 1. Set "max_execution_time=120;" in php.ini; 2. Set the time parameters through PHP's ini_set function; 3. Set the time parameters through the set_time_limit function.
The operating environment of this article: Windows7 system, PHP7.1 version, DELL G3 computer
How to set the maximum execution time of php in iis7?
PHP Modify the maximum execution time and maximum memory limit of the script
Three methods for PHP to set the maximum execution time of the script
1. Set
max_execution_time = 120;
in php.ini 2. Set through PHP's ini_set function
ini_set("max_execution_time", "120");
3. Set through set_time_limit function
set_time_limit(120);
If the above numbers are set to 0, there will be no limit. , the script will continue to execute.
Three ways to set the maximum memory limit of scripts in PHP
1. Set it in php.ini
memory_limit = 128M ;
2. Set it through PHP's ini_set function
ini_set('memory_limit', '128M');
3. Modify Apache’s .htaccess file
Note: This method only takes effect when php is executed with the Apache module.
Find the ".htaccess" file in the root directory of your website. If not, you can create one yourself.
Then put the following configuration into it:
php_value memory_limit 128M ;
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to set the maximum execution time of php in iis7. For more information, please follow other related articles on the PHP Chinese website!