array aspell_suggest
(int dictionary_link, string word);aspell_suggest は 指定した単語に関してありそうなスペルの配列を返します。
例 1. aspell_suggest
$aspell_link=aspell_new("english"); if (!aspell_check($aspell_link,"testt")) { $suggestions=aspell_suggest($aspell_link,"testt"); for($i=0; $i < count($suggestions); $i++) { echo "Possible spelling: " . $suggestions[$i] . "<br>"; } }