Home >Backend Development >PHP Tutorial >How to modify the maximum running time of php max_execution_time

How to modify the maximum running time of php max_execution_time

WBOY
WBOYOriginal
2016-07-25 09:03:39904browse
  1. //Modify the maximum execution time
  2. ini_set("max_execution_time", 2400); // s 40 minutes
  3. //Modify the maximum running memory this time
  4. ini_set("memory_limit", 1048576000); // Byte 1000 Mega, that is 1G
Copy code


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