Home  >  Article  >  Backend Development  >  Modify PHP maximum running time max_execution_time_PHP tutorial

Modify PHP maximum running time max_execution_time_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:54:52985browse

There is a simple method, which is to modify the configuration file directly in the script:

As follows:

------------------ -------------------------------------------------- -------------------

//Modify the maximum execution time
ini_set("max_execution_time", 2400); // s 40 minutes

//Modify the maximum running memory this time
ini_set("memory_limit", 1048576000); // Byte 1000 MB, which is 1G

---------- -------------------------------------------------- --------------------------

The modified parameters will only take effect when running the script this time!

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364531.htmlTechArticleThere is a simple method, which is to modify the configuration file directly in the script: as follows: ------- -------------------------------------------------- ----------------------------- //Maximum modification...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn