include("top1.php") ?>
检查一个单字,并提供拼写建议。
语法: array aspell_suggest(int dictionary_link, string word);
返回值: 数组
函数种类: 资料处理
本函数检查单字的拼写。并给予可能的拼法及正确的建议,以数组类型将结果返回。
<?$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>"; }}?>