(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_config_repl — 设置包含替换对的文件
设置包含替换对的文件。
替换对可以提高拼写检查器的质量。当一个单词拼写错误,并且在列表中没有找到合适的建议时,可以使用pspell_store_replacement()存储替换对,然后使用pspell_save_wordlist()保存包含替换对的词表。
在调用 pspell_new_config() 之前,应该在一个配置上使用 pspell_config_repl()。
版本 | 描述 |
---|---|
8.1.0 | config 参数现在期望一个 PSpell\Config 实例;之前,期望的是一个 资源。 |
示例 #1 pspell_config_repl()
<?php
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
pspell_config_repl($pspell_config, "/var/dictionaries/custom.repl");
$pspell = pspell_new_config($pspell_config);
pspell_check($pspell, "thecat");
?>
注意:
除非您拥有 pspell .11.2 和 aspell .32.5 或更高版本,否则此函数将无法工作。