PHP 最大运行时间 max_execution_time修改方法_PHP教程

WBOY
Release: 2016-07-21 15:40:35
Original
1193 people have browsed it

如下:
---------------------------------------------------------------------------------------
//修改最大执行时间
ini_set("max_execution_time", 2400); // s 40 分钟
//修改此次的最大运行内存
ini_set("memory_limit", 1048576000); // Byte 1000 兆,即 1G
---------------------------------------------------------------------------------------
修改的参数只在本次运行脚本的时候生效!

www.bkjia.com true http://www.bkjia.com/PHPjc/321349.html TechArticle 如下: --------------------------------------------------------------------------------------- //修改最大执行时间 ini_set("max_execution_time", 2400); // s 40 分钟 //修改...
Related labels:
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!