• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • enchant_dict_describe()

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

    Describes an individual dictionary

    说明

    enchant_dict_describe(resource $dict): mixed

    Returns the details of the dictionary.

    参数

    $dict

    Dictionary resource

    返回值

    成功时返回TRUE,或者在失败时返回FALSE

    范例

    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
    )