gpt4 book ai didi

php - fatal error : Maximum execution time of 30 seconds exceeded in C:

转载 作者:行者123 更新时间:2023-11-29 00:29:45 25 4
gpt4 key购买 nike

<分区>

我对这个错误感到很震惊......根本无法得到它

Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\vas1\apriori.php on line 36

我的这个函数的代码是这样的:

function combination($member,$num){
$n = count($member);

$total = pow(2, $n);
$list =array();

$k=0;
for ($i = 0; $i < $total; $i++) {
$list[$k]=array();

for ($j = 0; $j < $total; $j++) {

if ((pow(2, $j) & $i)) $list[$k][]=$member[$j];
}
if(count($list[$k])==$num){

$k++;
}else{

unset($list[$k]);
}
}
return $list;
}

第 36 行是:

 if ((pow(2, $j) & $i)) $list[$k][]=$member[$j];  

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