pspell_config_repl

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

pspell_config_repl设置包含替换对的文件

描述

pspell_config_repl(PSpell\Config $config, string $filename): bool

设置包含替换对的文件。

替换对提高了拼写检查器的质量。当一个单词拼写错误且在列表中没有找到合适的建议时,pspell_store_replacement() 可用于存储替换对,然后 pspell_save_wordlist() 可用于保存包含替换对的词典。

pspell_config_repl() 应该在调用 pspell_new_config() 之前在配置上使用。

参数

config

一个 PSpell\Config 实例。

filename

该文件应该由运行 PHP 的用户(例如 nobody)可写。

返回值

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

变更日志

版本 描述
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 或更高版本时才有效。

添加注释

用户贡献注释

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