PHP 8.3.4 Released!

enchant_dict_describe

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL enchant >= 0.1.0 )

enchant_dict_describeDescribes an individual dictionary

说明

enchant_dict_describe(EnchantDictionary $dictionary): array

Returns the details of the dictionary.

参数

dictionary

An Enchant dictionary returned by enchant_broker_request_dict() or enchant_broker_request_pwl_dict().

返回值

成功时返回 true, 或者在失败时返回 false

更新日志

版本 说明
8.0.0 dictionary expects an EnchantDictionary instance now; previoulsy, a resource was expected.
8.0.0 Prior to this version, the function returned false on failure.

示例

示例 #1 A enchant_dict_describe() example

Check if a dictionary exists using enchant_broker_dict_exists() and show the detail of it.

<?php
$tag
= 'en_US';
$broker = enchant_broker_init();
if (
enchant_broker_dict_exists($broker,$tag)) {
$dict = enchant_broker_request_dict($r, $tag);
$dict_details = enchant_dict_describe($dict);
print_r($dict_details);
}
?>

以上示例的输出类似于:

Array
(
    [lang] => en_US
    [name] => aspell
    [desc] => Aspell Provider
    [file] => /usr/lib/enchant/libenchant_aspell.so
)

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top