enchant_broker_request_dict
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL enchant >= 0.1.0 )
enchant_broker_request_dict — タグを使用して新しい辞書を作成する
説明
タグを使用して新しい辞書を作成します。空でない言語タグで、 使用したい辞書を指定します ("en_US"、"de_DE"、...)。
戻り値
成功した場合に辞書リソース、失敗した場合に false
を返します。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
broker は、EnchantBroker クラスのインスタンスを期待するようになりました。
これより前のバージョンでは、リソース が期待されていました。
|
8.0.0 | 成功時に、この関数は EnchantDictionary のインスタンスを返すようになりました。 これより前のバージョンでは、リソース が返されていました。 |
例
例1 enchant_broker_request_dict() の例
辞書が存在するかどうかを enchant_broker_dict_exists() で調べ、それを要求します。
<?php
$tag = 'en_US';
$broker = enchant_broker_init();
if (enchant_broker_dict_exists($broker,$tag)) {
$dict = enchant_broker_request_dict($r, $tag);
}
?>
参考
- enchant_dict_describe() - 個々の辞書について説明する
- enchant_broker_dict_exists() - 辞書が存在するかどうかを調べる。空でないタグを使用する
- enchant_broker_free_dict() - 辞書リソースを開放する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google