Erro fatal: Tempo máximo de execução de 30 segundos excedido em C: [fechado]

Estou muito impressionado com este erro ... simplesmente incapaz de obtê-lo

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

meu código para essa função era como:

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;
}

e a linha 36 é:

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

questionAnswers(1)

yourAnswerToTheQuestion