Dans :
Fonctions PHP
Concepts PHP
Fonctions MySQL
Fonctions HTML
Forum PHP/MySQL
Cours PHP/MySQL
Scripts PHP/MySQL
pspell_suggest retourne un tableau de suggestions pour le mot word .
<?php$pspell_link = pspell_new("en");if (!pspell_check($pspell_link, "testt")) { $suggestions = pspell_suggest($pspell_link, "testt"); foreach ($suggestions as $suggestion) { echo "Orthographes suggérées : $suggestion<br />"; }}?>