Check a word
$dictionary_link
$word
pspell_check checks the spelling of a word.
dictionary_link
word
The tested word.
Returns TRUE if the spelling is correct, FALSE if not.
TRUE
FALSE
Example #1 pspell_check Example
<?php$pspell_link = pspell_new("en");if (pspell_check($pspell_link, "testt")) { echo "This is a valid spelling";} else { echo "Sorry, wrong spelling";}?>