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