5

bigint在 php 中有一个类,用于计算大数字。它运作良好,除了时间限制。

我设置了时间限制

set_time_limit(900);

在我的 bigint.php 文件中,它在 localhost 中工作。但是在我的虚拟主机中,当我尝试计算 999^999 时,它会产生错误

致命错误:第 156 行 /home/vhosts/mysite.com/http/bigint/bigint.php 中的最大执行时间超过 10 秒

这是我的代码:

public function Multiply_Digit($digit){ //class function of bigint
if($digit==0){$this->str="0";}
else
{
$len=$this->length();
$Result = new bigint("0");
                $carry=0;
                $current;
/*line 156:*/   for ($i = 0; $i < $len; $i++)
                {
                    $current = $this->str[$len-$i-1] * $digit;                    
                    if ($i == 0) { $Result->str = ""+(($current + $carry) % 10); }
                    else{ $Result->str .= ""+(($current + $carry) % 10); }                                        
                    $carry = (($current+$carry) - ($current+$carry)%10)/10;
                }
                $Result->str .= ""+$carry;                
                $Result->str = strrev($Result->str);
                $Result->TrimLeadingZeros();                
                $this->str = $Result->str;//sacma oldu.
                }//else. digit not zero
}//Multiply_Digit()

我尝试同时放入set_time_limit(900);php 文件的开头和类的构造函数,但都没有工作。

我以为是会话问题,关闭浏览器并重新打开页面,仍然需要 10 秒作为时间限制。

我在这里做错了什么?

4

2 回答 2

4

“当PHP在安全模式下运行时,此功能无效。除了关闭安全模式或更改php.ini中的时间限制外,没有其他解决方法。” - http://php.net/manual/en/function.set-time-limit.php

核实。

于 2013-02-27T15:08:26.337 回答
2

可能您的 apache 配置为在 10 秒后停止执行,您的php.ini是否有以下行:

max_execution_time = 10

如果是这样,禁用超时(不推荐)将其更改为:

max_execution_time = 0

或您选择的任何整数限制:

set_time_limit(360);

您可以在php 手册中阅读更多内容。通常,将其设置为 0 不是一个好主意,因为例如,如果等待不存在的资源,服务器进程可能会卡住。

更新

如果该站点是托管的,则取决于托管公司,请询问他们是否可能。

另一种解决方法是使用 ajax 调用,让客户端而不是服务器等待

于 2013-02-27T15:08:14.350 回答