致命错误:超出最大执行时间 0 秒

发布于 2024-10-15 13:05:20 字数 356 浏览 3 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

菊凝晚露 2024-10-22 13:05:20

尝试在 php.ini 中设置 max_input_time = -1,或使用 set_time_limit(-1)。这对我来说很有效,无需重建 PHP。

这篇文章很好地解释了这一点。

Try setting max_input_time = -1 in php.ini, or using set_time_limit(-1). That worked for me without rebuilding PHP.

This article explains it nicely.

忆梦 2024-10-22 13:05:20

问题已解决,使用 litespeed api (lsapi) 构建的 php 有额外的 env 变量来确定最大执行时间 - < code>LSAPI_MAX_PROCESS_TIME(默认为 300 秒)。

Problem solved, php build with litespeed api (lsapi) has extra env variable to determine max execute time - LSAPI_MAX_PROCESS_TIME (default is 300sec).

同尘 2024-10-22 13:05:20

尝试 set_time_limit() 并检查 phpinfo() 如果你是能够设置时间限制:

set_time_limit(60*60);phpinfo();exit;

Try set_time_limit() and check in phpinfo() if you are able to set the time limit:

set_time_limit(60*60);phpinfo();exit;
总以为 2024-10-22 13:05:20

我发现“超出最大执行时间 0 秒”可能是由代码进入无限循环引起的。

例如:

while (true) { ... }

给我造成这个错误。

如果它不是环境变量(如前所述),我将检查 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:

while (true) { ... }

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文