mots-croises/dico.php
2025-05-01 17:40:35 +02:00

52 lines
1.5 KiB
PHP

<?php
const MIN_LETTRES_MOT_1 = 2;
const MIN_LETTRES_MOT_2 = 0;
const MAX_MOTS = 1000000;
$dico = [];
if (($lecteur = fopen("dico.csv", "r")) !== FALSE) {
$header = fgetcsv($lecteur, 0, "\t");
while (($ligne = fgetcsv($lecteur, 0, "\t")) !== FALSE) {
if (substr($ligne[0], 0, 1) != "#" && count($ligne) >= 3) {
[$mot, $definition, $auteur] = $ligne;
$mot = strtoupper($mot);
$longueur = strlen($mot);
if ($auteur) {
$definition .= " <small><em>$auteur</em></small>";
}
if (!isset($dico[$longueur])) {
$dico[$longueur] = [];
}
if (!isset($dico[$longueur][$mot])) {
$dico[$longueur][$mot] = [];
}
$dico[$longueur][$mot][] = $definition;
}
}
fclose($lecteur);
}
function mots_espaces($longueur, $nb_mots=0)
{
global $dico;
foreach ($dico[$longueur] as $mot => $definition) {
yield $mot;
if (++$nb_mots >= MAX_MOTS) return;
}
for ($i = MIN_LETTRES_MOT_1; $longueur - $i - 1 >= MIN_LETTRES_MOT_2; $i++) {
foreach ($dico[$i] as $mot1 => $definition) {
foreach (mots_espaces($longueur - $i - 1) as $mot2) {
if ($mot1 != $mot2) {
yield "$mot1 $mot2";
if (++$nb_mots >= MAX_MOTS) return;
yield "$mot2 $mot1";
if (++$nb_mots >= MAX_MOTS) return;
}
}
}
}
}