Home  >  Article  >  php教程  >  修改 PHP 最大运行时间 max_execution_time

修改 PHP 最大运行时间 max_execution_time

WBOY
WBOYOriginal
2016-06-13 11:37:231060browse

有一种简单的方法,就是在脚本中直接修改配置文件:

如下:

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

//修改最大执行时间
ini_set("max_execution_time", 2400); // s 40 分钟

//修改此次的最大运行内存
ini_set("memory_limit", 1048576000); // Byte 1000 兆,即 1G

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

修改的参数只在本次运行脚本的时候生效!

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