(csak PHP4 CVS)
pspell_check -- Check a word
Description
boolean pspell_check
(int dictionary_link, string word)
Pspell_check() checks the spelling of a word
and returns true if the spelling is correct, false if not.
Példa 1. Pspell_check() 1
2 $pspell_link = pspell_new ("en");
3
4 if (pspell_check ($pspell_link, "testt")) {
5 echo "This is a valid spelling";
6 } else {
7 echo "Sorry, wrong spelling";
8 }
9 |
|