Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: aspell_check_raw - Manual
[go: Go Back, main page]

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

search for in the

aspell_check" width="11" height="7"/> <Aspell関数(古い拡張モジュール)
Last updated: Thu, 31 May 2007

view this page in

aspell_check_raw

(PHP 4 <= 4.2.3)

aspell_check_raw — 大文字小文字の変更や削除を行うことなく、単語のチェックを行う [非推奨]

説明

bool aspell_check_raw ( int $dictionary_link, string $word )

aspell_check_raw() は単語のスペルをチェックします。 大文字小文字変換や空白の削除は行いません。

パラメータ

dictionary_link

aspell_new() が返す辞書リンク識別子。

word

調べる単語。

返り値

スペルが正しい場合に TRUE、正しくない場合に FALSE を返します。

例 324. aspell_check_raw() の例

<?php

$aspell_link
= aspell_new("english");

if (
aspell_check_raw($aspell_link, "test")) {
    echo
"正しいスペルです";
} else {
    echo
"スペルが間違っています";
}

?>

参考

aspell_check()



add a note add a note User Contributed Notes
aspell_check_raw
There are no user contributed notes for this page.

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