NAME ^

php_pspell.pir - PHP pspell Library

DESCRIPTION ^

Functions ^

bool pspell_add_to_personal(int pspell, string word)

Adds a word to a personal list

NOT IMPLEMENTED.

bool pspell_add_to_session(int pspell, string word)

Adds a word to the current session

NOT IMPLEMENTED.

bool pspell_check(int pspell, string word)

Returns true if word is valid

NOT IMPLEMENTED.

bool pspell_clear_session(int pspell)

Clears the current session

NOT IMPLEMENTED.

int pspell_config_create(string language [, string spelling [, string jargon [, string encoding]]])

Create a new config to be used later to create a manager

NOT IMPLEMENTED.

bool pspell_config_data_dir(int conf, string directory)

location of language data files

NOT IMPLEMENTED.

bool pspell_config_dict_dir(int conf, string directory)

location of the main word list

NOT IMPLEMENTED.

bool pspell_config_ignore(int conf, int ignore)

Ignore words <= n chars

NOT 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 config

NOT IMPLEMENTED.

bool pspell_config_repl(int conf, string repl)

Use a personal dictionary with replacement pairs for this config

NOT IMPLEMENTED.

bool pspell_config_runtogether(int conf, bool runtogether)

Consider run-together words as valid components

NOT IMPLEMENTED.

bool pspell_config_save_repl(int conf, bool save)

Save replacement pairs when personal list is saved for this config

NOT IMPLEMENTED.

int pspell_new(string language [, string spelling [, string jargon [, string encoding [, int mode]]]])

Load a dictionary

NOT IMPLEMENTED.

int pspell_new_config(int config)

Load a dictionary based on the given config

NOT IMPLEMENTED.

int pspell_new_personal(string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])

Load a dictionary with a personal wordlist

NOT IMPLEMENTED.

bool pspell_save_wordlist(int pspell)

Saves the current (personal) wordlist

NOT IMPLEMENTED.

bool pspell_store_replacement(int pspell, string misspell, string correct)

Notify the dictionary of a user-selected replacement

NOT IMPLEMENTED.

array pspell_suggest(int pspell, string word)

Returns array of suggestions

NOT IMPLEMENTED.


parrot