(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_config_repl — 设置包含替换对的文件
设置包含替换对的文件。
替换对提高了拼写检查器的质量。当一个单词拼写错误且在列表中没有找到合适的建议时,pspell_store_replacement() 可用于存储替换对,然后 pspell_save_wordlist() 可用于保存包含替换对的词典。
pspell_config_repl() 应该在调用 pspell_new_config() 之前在配置上使用。
版本 | 描述 |
---|---|
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 或更高版本时才有效。