(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)
pspell_save_wordlist — 将个人词典保存到文件
pspell_save_wordlist() 保存当前会话中的个人词典。要保存的文件的位置由 pspell_config_personal() 和(可选)pspell_config_repl() 指定。
版本 | 描述 |
---|---|
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 或更高版本时才有效。