(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_store_replacement — 存储一个单词的替换对
pspell_store_replacement() 存储一个单词的替换对,以便稍后由 pspell_suggest() 返回替换。为了能够利用此函数,您必须使用 pspell_new_personal() 打开词典。为了永久保存替换对,您必须使用 pspell_config_personal() 和 pspell_config_repl() 设置保存自定义词典的路径,然后使用 pspell_save_wordlist() 将更改写入磁盘。
版本 | 描述 |
---|---|
8.1.0 | dictionary 参数现在需要一个 PSpell\Dictionary 实例;以前需要一个 资源。 |
示例 #1 pspell_store_replacement()
<?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_store_replacement($pspell, $misspelled, $correct);
pspell_save_wordlist($pspell);
?>
注意:
除非您拥有 pspell .11.2 和 aspell .32.5 或更高版本,否则此函数将无法工作。