NAME ^

php_pspell.pir - PHP pspell Library

DESCRIPTION ^

Functions ^

bool pspell_add_to_personal(int pspell, string word)
Adds a word to a personal listNOT IMPLEMENTED.
bool pspell_add_to_session(int pspell, string word)
Adds a word to the current sessionNOT IMPLEMENTED.
bool pspell_check(int pspell, string word)
Returns true if word is validNOT IMPLEMENTED.
bool pspell_clear_session(int pspell)
Clears the current sessionNOT IMPLEMENTED.
int pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]])
Create a new config to be used later to create a managerNOT IMPLEMENTED.
bool pspell_config_data_dir(int conf, string directory)
location of language data filesNOT IMPLEMENTED.
bool pspell_config_dict_dir(int conf, string directory)
location of the main word listNOT IMPLEMENTED.
bool pspell_config_ignore(int conf, int ignore)
Ignore words <= n charsNOT IMPLEMENTED.
bool pspell_config_mode(int conf, long mode)
Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS)NOT IMPLEMENTED.
bool pspell_config_personal(int conf, string personal)
Use a personal dictionary for this configNOT IMPLEMENTED.
bool pspell_config_repl(int conf, string repl)
Use a personal dictionary with replacement pairs for this configNOT IMPLEMENTED.
bool pspell_config_runtogether(int conf, bool runtogether)
Consider run-together words as valid componentsNOT IMPLEMENTED.
bool pspell_config_save_repl(int conf, bool save)
Save replacement pairs when personal list is saved for this configNOT IMPLEMENTED.
int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])
Load a dictionaryNOT IMPLEMENTED.
int pspell_new_config(int config)
Load a dictionary based on the given configNOT IMPLEMENTED.
int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])
Load a dictionary with a personal wordlistNOT IMPLEMENTED.
bool pspell_save_wordlist(int pspell)
Saves the current (personal) wordlistNOT IMPLEMENTED.
bool pspell_store_replacement(int pspell, string misspell, string correct)
Notify the dictionary of a user-selected replacementNOT IMPLEMENTED.
array pspell_suggest(int pspell, string word)
Returns array of suggestionsNOT IMPLEMENTED.


parrot