Home > php教程 > php手册 > body text

php执行超时设置的方法

WBOY
Release: 2016-06-06 19:46:31
Original
1173 people have browsed it

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 1、打开php.ini文件,找到 max_execution_time,将后面的数字改成你想要的时间,单位是秒。 这种方式修改后需要重启服务,一般不建议采用这种方法。 2、使用PHP的ini_set()函数设置,设置方法: ini

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  1、打开php.ini文件,找到 max_execution_time,将后面的数字改成你想要的时间,单位是秒。

  这种方式修改后需要重启服务,一般不建议采用这种方法。

  2、使用PHP的ini_set()函数设置,设置方法:

  ini_set("max_execution_time",1800);

  设置语句必须是php文件的第一行。

  3、使用PHP的set_time_limit()函数设置,设置方法:

  set_time_limit(1800);

  设置语句必须是php文件的第一行。

php执行超时设置的方法

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template