pspell_store_replacement
(PHP 4 >= 4.0.2, PHP 5)
pspell_store_replacement — 단어 교정목록을 저장
설명
int pspell_store_replacement
( int $dictionary_link
, string $misspelled
, string $correct
)
pspell_store_replacement()함수는 단어의 교정목록을 저장합니다. 나중에 pspell_suggest()함수를 사용해서 교정내용을 반환할 수 있습니다. 이 함수를 사용할 수 있게 하기 위해서 사전을 열때 pspell_new_personal()함수를 사용해야 합니다. 교정목록을 영구적으로 저장하기위해서는 pspell_config_personal()함수와 pspell_config_repl()함수를 사용해서 사용자 단어목록을 저장할 경로를 지정해야 합니다. 그리고 변경된 것을 디스크에 저장하기 위해pspell_save_wordlist() 함수를 사용해야 합니다. 이 함수는 pspell .11.2와 aspell .32.5 또는 이후의 버전에서만 실행됩니다.
Example#1 pspell_store_replacement()
$pspell_config = pspell_config_create ("en");
pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws");
pspell_config_repl ($pspell_config, "/var/dictionaries/custom.repl");
$pspell_link = pspell_new_config ($pspell_config);
pspell_store_replacement ($pspell_link, $misspelled, $correct);
pspell_save_wordlist ($pspell_link);