(PHP 4 >= 4.0.2)
pspell_config_ignore -- 문자의 길이가 n보다 작은 단어는 무시
설명
int
pspell_config_ignore ( int dictionary_link, int n)
pspell_config_ignore() 함수는pspell_new_config()함수를 호출하기 전에 설정되어야
합니다. 이 함수는 문자길이가 n보다 작은 단어는 검사하지 않고 무시합니다.
예 1.
pspell_config_ignore()
$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 |
|