这是一个关于如何在不使用或无法使用系统上安装的词典时使用 pspell 的示例。
<?
$text_to_check = 'I can sspeak English';
// 可选。稍微清理一下文本
$clean_text_to_check = preg_replace('/[^a-z0-9\-\.!;]+/i', ' ', $text_to_check);
// 获取单词列表
$word_list = preg_split('/\s+/', $clean_text_to_check);
$pspell_config = pspell_config_create("en", null, null, 'utf-8');
// 如果您想要的 aspell 词典未安装,
// 复制 aspell 词典并将路径设置为此处
pspell_config_data_dir($pspell_config, "/home/alex/dictionaries/");
pspell_config_dict_dir($pspell_config, "/home/alex/dictionaries/");
$pspell_link = pspell_new_config($pspell_config);
foreach($word_list as $word) {
if (!pspell_check($pspell_link, trim($word))) {
$suggestions = pspell_suggest($pspell_link, trim($word));
echo $word . ' 拼写错误 <br />';
foreach ($suggestions as $suggestion) {
echo "\t 可能的拼写:$suggestion <br />";
}
}
else {
// 正确的拼写
}
}
?>