Overview PHP spelling check function library. As we all know, aspell_new loads a new dictionary. Syntax: intaspell_new (stringmaster, stringpersonal); return value: integer function type: data processing content description this function contains all know,
Aspell_new
Load a new dictionary.
Syntax: int aspell_new (string master, string personal );
Return value: integer
Function type: data processing
Description
This function loads a new dictionary and assigns a new ID value (integer) for use in the program.
Example $ aspell_link = aspell_new ("english ");
Aspell_check
Check a single word.
Syntax: boolean aspell_check (int dictionary_link, string word );
Return value: Boolean
Function type: data processing
Description
This function checks the spelling of a single word. If the spelling is correct, true is returned. if the spelling is incorrect, false is returned.
Aspell_check-raw
Check a single word without changing or correcting it even if it is spelled incorrectly.
Syntax: boolean aspell_check_raw (int dictionary_link, string word );
Return value: Boolean
Function type: data processing
Description
This function checks the spelling of a single word. If the spelling is correct, true is returned. if the spelling is incorrect, false is returned. This function does not change or correct users' spelling.
Upload, aspell_new load a new dictionary. Syntax: int aspell_new (string master, string personal); return value: integer function type: data processing content description this function loads...