pspell_config_ignore -- Ignore words less than N characters long
Syntax
int pspell_config_ignore ( int dictionary_link, int n )
pspell_config_ignore() should be used on a config
before calling pspell_new_config(). This function
allows short words to be skipped by the spell checker. Words less than
n characters will be skipped.
Example 1. pspell_config_ignore()
<?php $pspell_config = pspell_config_create("en"); pspell_config_ignore($pspell_config, 5); $pspell_link = pspell_new_config($pspell_config); pspell_check($pspell_link, "abcd"); //will not result in an error ?>
Php pspell config ignore Function syntax tag
pspell config ignore php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php pspell config ignore syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.