pspell_clear_session
  現在のセッションをクリアする
  
 
 
  説明
  
   bool pspell_clear_session(PSpell\Dictionary $dictionary)
  
   pspell_clear_session は、
   現在のセッションをクリアします。現在の単語リストはブランクになり、
   例えば pspell_save_wordlist
   でこのリストを保存しても何もおきません。
  
  
 
  パラメータ
  
   
    
     - 
dictionary 
     - 
      
PSpell\Dictionary クラスのインスタンス。
      
    
   
  
  
 
  戻り値
  
   成功した場合に true を、失敗した場合に false を返します。
  
  
 
 
  例
  
   
    例1 pspell_add_to_personal の例
    
<?php
$pspell_config = pspell_config_create("en");
pspell_config_personal($pspell_config, "/var/dictionaries/custom.pws");
$pspell = pspell_new_config($pspell_config);
pspell_add_to_personal($pspell, "Vlad");
pspell_clear_session($pspell);
pspell_save_wordlist($pspell);    //"Vlad" は保存されません。
?>