pspell_store_replacement

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

pspell_store_replacement存储一个单词的替换对

描述

pspell_store_replacement(PSpell\Dictionary $dictionary, string $misspelled, string $correct): bool

pspell_store_replacement() 存储一个单词的替换对,以便稍后由 pspell_suggest() 返回替换。为了能够利用此函数,您必须使用 pspell_new_personal() 打开词典。为了永久保存替换对,您必须使用 pspell_config_personal()pspell_config_repl() 设置保存自定义词典的路径,然后使用 pspell_save_wordlist() 将更改写入磁盘。

参数

dictionary

一个 PSpell\Dictionary 实例。

misspelled

拼写错误的单词。

correct

misspelled 单词的正确拼写。

返回值

成功时返回 true,失败时返回 false

变更日志

版本 描述
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 或更高版本,否则此函数将无法工作。

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top