pspell

PHP: Add words to pspell?

I am using pspell like this: $ps = pspell_new("en"); if(!pspell_check($ps, $word)) { $suggestion = pspell_suggest($ps, $word); } However I want to added some industry terms to the list. I looked up pspell_add_to_session which says the first param is supposed to be int $dictionary_link But I do not know what that is and there i...

Case-insensitive PSpell spell checking?

I'd like to use PHP's PSpell check function in my program. Is there an option somewhere for case-insensitive checking in pspell_check()? ...