1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?php
$tableau = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm' ,'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z');
echo "Possibilités: ".(count($tableau)*count($tableau));
$tableau_resultat = array();
$x = 0;
for($i = 0; $i<count($tableau); $i++) {
for($u=0; $u<count($tableau); $u++) {
$possibilite = $tableau[$i];
for($y=$u; $x<count($tableau); $y++) {
if (!isset($tableau[$y])) $y = 0;
if ($y != $i) $possibilite .= $tableau[$y];
$x++;
}
$tableau_resultats[] = $possibilite;
$x = 0;
}
}
echo "<pre>";
print_r($tableau_resultats);
echo "</pres>";
?> |
Partager