我对这个错误感到非常震惊......根本无法得到它
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];