PHP.nl

enchant_dict_describe

enchant_dict_describe

Describes an individual dictionary

array **enchant_dict_describe** EnchantDictionary $dictionary

Returns the details of the dictionary.

return.success

Voorbeeld: A example

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

enchant_broker_dict_exists

<?php
$tag = 'en_US';
$broker = enchant_broker_init();
if (enchant_broker_dict_exists($broker, $tag)) {
    $dict = enchant_broker_request_dict($broker, $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
)