致命错误:超出最大执行时间 0 秒
我的脚本比较 2 个源树,创建可能更改的文件的映射,比较 MD5 哈希值并创建差异包。
在 28000-29000 个文件之后,PHP 终止脚本并出现错误:
致命错误:第 67 行 /root/_PACKER-TESTER/core/diff.class.php 中的最大执行时间超过 0 秒(标准 in_array() 调用)
我已经尝试将 max_input_time
设置为高值(或零)-什么都没有。
将 max_execution_time
设置为 99999999999999 没有任何作用......同样的错误。
My script compares 2 source trees, creates a map of possible changed files, compares MD5 hashes and creates a diff-package.
After 28000-29000 files, PHP terminates the script with error:
Fatal error: Maximum execution time of 0 seconds exceeded in /root/_PACKER-TESTER/core/diff.class.php on line 67 (standard in_array() call)
I already tried to set max_input_time
to high value (or zero) - nothing.
Setting max_execution_time
to 99999999999999 do nothing .... the same error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试在
php.ini
中设置max_input_time = -1
,或使用set_time_limit(-1)
。这对我来说很有效,无需重建 PHP。这篇文章很好地解释了这一点。
Try setting
max_input_time = -1
inphp.ini
, or usingset_time_limit(-1)
. That worked for me without rebuilding PHP.This article explains it nicely.
问题已解决,使用
litespeed api (lsapi)
构建的php
有额外的env
变量来确定最大执行时间 - < code>LSAPI_MAX_PROCESS_TIME(默认为 300 秒)。Problem solved,
php
build withlitespeed api (lsapi)
has extraenv
variable to determine max execute time -LSAPI_MAX_PROCESS_TIME
(default is 300sec).尝试 set_time_limit() 并检查 phpinfo() 如果你是能够设置时间限制:
Try set_time_limit() and check in phpinfo() if you are able to set the time limit:
我发现“超出最大执行时间 0 秒”可能是由代码进入无限循环引起的。
例如:
给我造成这个错误。
如果它不是环境变量(如前所述),我将检查 php 报告的行号上的内容以及错误
I've found the "max execution time of 0 seconds exceeded" can be caused by the code going into an infinite loop.
For example:
causes this error for me.
If it's not an environment variable (as mentioned previously) I would examine what's on the line number reported by php with the error