PSPELL_ADD_TO_PERSONAL(3) 1 PSPELL_ADD_TO_PERSONAL(3)
pspell_add_to_personal - Add the word to a personal wordlist
SYNOPSIS
bool pspell_add_to_personal (int $dictionary_link, string $word)
DESCRIPTION
pspell_add_to_personal(3) adds a word to the personal wordlist. If you used pspell_new_config(3) with pspell_config_personal(3) to open the
dictionary, you can save the wordlist later with pspell_save_wordlist(3).
PARAMETERS
o $dictionary_link
-
o $word
- The added word.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1
pspell_add_to_personal(3)
<?php
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
$pspell_link = pspell_new_config($pspell_config);
pspell_add_to_personal($pspell_link, "Vlad");
pspell_save_wordlist($pspell_link);
?>
NOTES
Note
This function will not work unless you have pspell .11.2 and aspell .32.5 or later.
PHP Documentation Group PSPELL_ADD_TO_PERSONAL(3)