2024 年 PHP 大会日本站

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_new_config() 之前,应该在一个配置上使用 pspell_config_repl()

参数

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