您可以通过在您的php代码中设置set_time_limit来实现(无限制地设置为0)
set_time_limit(0);
或者直接在您的php.ini中修改max_execution_time的值
;;;;;;;;;;;;;;;;;;;; Resource Limits ;;;;;;;;;;;;;;;;;;;;; Maximum execution time of each script, in seconds; http://php.net/max-execution-time; Note: This directive is hardpred to 0 for the CLI SAPImax_execution_time = 120
或使用ini_set()进行更改
ini_set('max_execution_time', 120); //120 seconds
但请注意,对于第三个选项:
max_execution_time
在安全模式下运行时,无法使用ini_set()更改此设置。唯一的解决方法是关闭安全模式或通过更改php.ini中的时间限制。
来源www.php.net
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)