致命错误:超过30秒的最大执行时间

致命错误:超过30秒的最大执行时间

我正在从一个在线源下载一个JSON文件,当它在循环中运行时,我会得到以下错误:

致命错误:第24行C:\Wamp\www\temp\get ch.php中超过30秒的最大执行时间


Helenr
浏览 676回答 3
3回答

Smart猫小萌

你的循环可能没完没了。如果不是,您可以像这样延长最大执行时间:ini_set('max_execution_time', 300); //300 seconds = 5 minutes

白猪掌柜的

我也有同样的问题,并通过更改Param的值来解决它。max_execution_time在……里面php.ini,就像这样:max_execution_time = 360      ; Maximum execution time of each script, in seconds (I CHANGED THIS VALUE)max_input_time = 120          ; Maximum amount of time each script may spend parsing request data;max_input_nesting_level = 64 ; Maximum input variable nesting levelmemory_limit = 128M           ; Maximum amount of memory a script may consume (128MB by default)

月关宝盒

上面所有的答案都是正确的,但在某些情况下,我使用了一种简单的方法来避免它。只需将此命令放在脚本的开头:set_time_limit(0);  
打开App,查看更多内容
随时随地看视频慕课网APP