如何在php中增加最大执行时间
2022-08-30 06:15:35
我想增加php中的最大执行时间,而不是通过更改文件。php.ini
我想从我的php文件中增加它。
这可能吗?
我想增加php中的最大执行时间,而不是通过更改文件。php.ini
我想从我的php文件中增加它。
这可能吗?
ini_set('max_execution_time', '300'); //300 seconds = 5 minutes
ini_set('max_execution_time', '0'); // for infinite time of execution
把它放在PHP脚本的顶部,让你的脚本松开!
如果关闭,则使用以下语句safe_mode
set_time_limit(0);