pspell_config_mode

(PHP 4 >= 4.0.2, PHP 5)

pspell_config_mode -- 返される提案の数のモードを変更する

説明

bool pspell_config_mode ( int dictionary_link, int mode )

pspell_config_mode() は、 pspell_new_config() のコール前に設定を行う際に 使用します。この関数は、 pspell_suggest() により返される修正候補の数を 定義します。

パラメータ mode は、スペルチェッカの動作モードです。 使用可能なモードを以下に示します。

例 1. pspell_config_mode()

<?php
$pspell_config
= pspell_config_create("en");
pspell_config_mode($pspell_config, PSPELL_FAST);
$pspell_link = pspell_new_config($pspell_config);
pspell_check($pspell_link, "thecat");
?>