pspell_config_repl
    (PHP 4 >= 4.0.2, PHP 5)
pspell_config_repl -- 置換候補を保持するファイルを設定する
説明
int 
pspell_config_repl ( int dictionary_link, string file )
     pspell_config_repl() は、
     pspell_new_config()をコールする前に設定を行う
     ために使用する必要があります。置換の組は、スペルチェッカの品質を
     改善します。単語のスペルミスをした場合、そして、適当な修正候補が
     リストにあった場合、pspell_store_replacement()
     を置換候補を保存するために使用し、置換候補を含む単語リストを保存
     するために pspell_save_wordlist()を使用するこ
     とが可能です。fileは、PHPの実行ユーザー(例:nobody)により書き込み
     可能である必要があります。この関数は、pspell .11.2 および aspell
     .32.5 以降でない限り、動作しないことに注意してください。
    
     
例 1. pspell_config_repl() 
$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_check ($pspell_link, "thecat");
 |  
  |