pspell_add_to_personal | PHP 4.0.2 |
int pspell_add_to_personal(int pspell, string word) |
|
Adds a word to a personal list. |
pspell_add_to_session | PHP 4.0.2 |
int pspell_add_to_session(int pspell, string word) |
|
Adds a word to the current session. |
pspell_check | PHP 4.0.2 |
int pspell_check(int pspell, string word) |
|
Returns true if word is valid. |
pspell_clear_session | PHP 4.0.2 |
int pspell_clear_session(int pspell) |
|
Clears the current session. |
pspell_config_create | PHP 4.0.2 |
int pspell_config_create(string language[, string spelling[, string jargon[, string encoding]]]) |
|
Creates a new configuration to be used later to create a manager. |
pspell_config_ignore | PHP 4.0.2 |
int pspell_config_ignore(int conf, int ignore) |
|
Ignore words with ignore characters or less. |
pspell_config_mode | PHP 4.0.2 |
int pspell_config_mode(int conf, long mode) |
|
Selects mode for configuration (PSPELL_FAST, PSPELL_NORMAL, or PSPELL_BAD_SPELLERS). |
pspell_config_personal | PHP 4.0.2 |
int pspell_config_personal(int conf, string personal) |
|
Uses a personal dictionary for this configuration. |
pspell_config_repl | PHP 4.0.2 |
int pspell_config_repl(int conf, string repl) |
|
Uses a personal dictionary with replacement pairs for this configuration. |
pspell_config_runtogether | PHP 4.0.2 |
int pspell_config_runtogether(int conf, bool runtogether) |
|
Considers run-together words as valid components. |
pspell_config_save_repl | PHP 4.0.2 |
int pspell_config_save_repl(int conf, bool save) |
|
Saves replacement pairs when a personal list is saved for this configuration. |
pspell_new_config | PHP 4.0.2 |
int pspell_new_config(int config) |
|
Loads a dictionary based on the given configuration. |
pspell_new_personal | PHP 4.0.2 |
int pspell_new_personal(string personal, string language[, string spelling[, string jargon[, string encoding[, int mode]]]]) |
|
Loads a dictionary with a personal word list. |
pspell_new | PHP 4.0.2 |
int pspell_new(string language[, string spelling[, string jargon[, string encoding[, int mode]]]]) |
|
Loads a dictionary. |
pspell_save_wordlist | PHP 4.0.2 |
int pspell_save_wordlist(int pspell) |
|
Saves the current (personal) wordiest. |
pspell_store_replacement | PHP 4.0.2 |
int pspell_store_replacement(int pspell, string misspell, string correct) |
|
Notifies the dictionary of a user-selected replacement. |
pspell_suggest | PHP 4.0.2 |
array pspell_suggest(int pspell, string word) |
|
Returns array of suggestions. |