gpt4 book ai didi

PHP max_execution_timeout 未被评估

转载 作者:搜寻专家 更新时间:2023-10-31 21:49:13 24 4
gpt4 key购买 nike

我正在运行 PHP 7.0.22,在尝试在 PHP 脚本中设置 max_execution_timeout 选项时遇到问题。 max_execution_timeout 设置正确但 PHP 未考虑:

<?php

...
$iniset = ini_set('max_execution_time', 120 * 60); // 2 hours
$iniget = ini_get('max_execution_time');
var_dump($iniset, $iniget);
...

这是输出:

string '30' (length=2) string '7200' (length=4)

( ! ) Fatal error: Maximum execution time of 120 seconds exceeded in file.php on line 425

如您所见,限制增加到 7200 秒,但脚本执行在 120 秒后中断,如 fatal error 所示。

这怎么可能?

P.S.: 我安装了 Xdebug,可能会导致这个问题。

感谢您的关注。

最佳答案

正如您提到的,您禁用了安全模式,并且 ini_set() 不工作。唯一的解决方法是更改​​ php.ini.

中的时间限制

关于PHP max_execution_timeout 未被评估,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47353704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com