Query: pspell_suggest
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
PSPELL_SUGGEST(3) 1 PSPELL_SUGGEST(3) pspell_suggest - Suggest spellings of a wordSYNOPSISarray pspell_suggest (int $dictionary_link, string $word)DESCRIPTIONpspell_suggest(3) returns an array of possible spellings for the given word.PARAMETERSo $dictionary_link - o $word - The tested word.RETURN VALUESReturns an array of possible spellings.EXAMPLESExample #1 pspell_suggest(3) example <?php $pspell_link = pspell_new("en"); if (!pspell_check($pspell_link, "testt")) { $suggestions = pspell_suggest($pspell_link, "testt"); foreach ($suggestions as $suggestion) { echo "Possible spelling: $suggestion<br />"; } } ?> PHP Documentation Group PSPELL_SUGGEST(3)
Related Man Pages |
---|
pspell_save_wordlist(3) - php |
pspell_new_personal(3) - php |
preg_quote(3) - php |
pspell_add_to_personal(3) - php |
pspell_config_personal(3) - php |