gpt4 book ai didi

忽略 PHP max_execution_time(没有安全模式,没有共享主机,只有 localhost/windows7/php 5.3.1 和 Apache 超时为 300)

转载 作者:可可西里 更新时间:2023-11-01 12:19:38 24 4
gpt4 key购买 nike

这个问题让我抓狂,因为 php.ini 和 htaccess 中的 max_execution_time 以及从 php 报告的肯定比警告消息中的 reportet 高。

<?php
echo "Max execution time: ".ini_get("max_execution_time")."<br />";
while(true)
{
sleep(1);
}
?>

输出:

最大执行时间:240

fatal error :第 5 行 C:\xampp\htdocs\timetest.php 中超过 60 秒的最大执行时间

回答

是的,这似乎是一个错误:max_input_time 覆盖 max_execution_time!

访问权限:

php_value max_execution_time 240
php_value max_input_time 111

时间测试.php:

<?php
echo "Max execution time: ".ini_get("max_execution_time")."<br />";
echo "Max input time: ".ini_get("max_input_time")."<br />";
while(true)
{
sleep(1);
}
?>

输出(证明):

最大执行时间:240

最大输入时间:111

fatal error :第 6 行 C:\xampp\htdocs\timetest.php 中超出了最大执行时间 111 秒

感谢您的帮助!

最佳答案

这是一个 PHP 错误。在此举报http://bugs.php.net/48949

编辑:发现 max_input_time覆盖 max_execution 时间。这一定是您的问题。

关于忽略 PHP max_execution_time(没有安全模式,没有共享主机,只有 localhost/windows7/php 5.3.1 和 Apache 超时为 300),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2506538/

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