downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

pspell_config_create> <pspell_check
[edit] Last updated: Fri, 24 May 2013

view this page in

pspell_clear_session

(PHP 4 >= 4.0.2, PHP 5)

pspell_clear_session現在のセッションをクリアする

説明

bool pspell_clear_session ( int $dictionary_link )

pspell_clear_session() は、 現在のセッションをクリアします。現在の単語リストはブランクになり、 例えば pspell_save_wordlist() でこのリストを保存しても何もおきません。

パラメータ

dictionary_link

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 pspell_add_to_personal() の例

<?php
$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" は保存されません
?>



add a note add a note User Contributed Notes pspell_clear_session - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites