(PHP 4 >= 4.0.2)
pspell_clear_session -- 현재 연결된 세션 제거
설명
int
pspell_clear_session ( int dictionary_link)
pspell_clear_session()함수는 현재 연결된 세션을 제거합니다.
현재 단어목록은 비워집니다.
예를들어 pspell_save_wordlist()함수를 사용해서 단어목록에 저장할려고 하면
아무일도 생기지 않습니다.
예 1.
pspell_add_to_personal()
$pspell_config = pspell_config_create ("en");
pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws");
$pspell_link = pspell_new_config ($pspell_config);
pspell_add_to_personal ($pspell_link, "Vlad");
pspell_clear_session ($pspell_link);
pspell_save_wordlist ($pspell_link); //"Vlad" will not be saved |
|