pspell_save_wordlist

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

pspell_save_wordlist将个人词典保存到文件

描述

pspell_save_wordlist(PSpell\Dictionary $dictionary): bool

pspell_save_wordlist() 保存当前会话中的个人词典。要保存的文件的位置由 pspell_config_personal() 和(可选)pspell_config_repl() 指定。

参数

dictionary

一个 PSpell\Dictionary 实例。

返回值

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

变更日志

版本 描述
8.1.0 现在 dictionary 参数需要一个 PSpell\Dictionary 实例;以前,需要一个 资源

范例

示例 #1 pspell_add_to_personal()

<?php
$pspell_config
= pspell_config_create("en");
pspell_config_personal($pspell_config, "/tmp/dicts/newdict");
$pspell = pspell_new_config($pspell_config);

pspell_add_to_personal($pspell, "Vlad");
pspell_save_wordlist($pspell);
?>

注释

注意:

此函数只有在您拥有 pspell .11.2 和 aspell .32.5 或更高版本时才有效。

添加注释

用户贡献注释

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