How to modify the maximum running time of php max_execution_time

WBOY
Release: 2016-07-25 09:03:39
Original
859 people have browsed it
  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


source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template