1; $i++) { while ($n > 1 && $n % $i === 0) { $factorList[]=$i; $n = $n / $i; } } return $factorList; }