PHP.nl

pspell_config_ignore

pspell_config_ignore

Ignore words less than N characters long

bool **pspell_config_ignore** PSpell\Config $config int $min_length
should be used on a config

before calling . This function allows short words to be skipped by the spell checker. pspell_config_ignore``pspell_new_config

config``min_length Words less than characters will be skipped. min_length

return.success

<?php
$pspell_config = pspell_config_create("en");
pspell_config_ignore($pspell_config, 5);
$pspell = pspell_new_config($pspell_config);
pspell_check($pspell, "abcd");    //will not result in an error
?>