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 />"; }}?>