pspell_check

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

pspell_check単語をチェックする

説明

pspell_check(PSpell\Dictionary $dictionary, string $word): bool

pspell_check() は単語のスペルをチェックします。

パラメータ

dictionary

PSpell\Dictionary クラスのインスタンス。

word

チェックする単語。

戻り値

スペルが正しい場合に true、そうでない場合に false を返します。

変更履歴

バージョン 説明
8.1.0 引数 dictionary は、PSpell\Dictionary クラスのインスタンスを期待するようになりました。 これより前のバージョンでは、リソース を期待していました。

例1 pspell_check() の例

<?php
$pspell 
pspell_new("en");

if (
pspell_check($pspell"testt")) {
    echo 
"This is a valid spelling";
} else {
    echo 
"Sorry, wrong spelling";
}
?>

関連キーワード:  チェック, 単語, pspell, check, PSpell, Dictionary, クラス, 期待, バージョン, スペル