Forum und email
enchant_dict_describe

enchant_dict_describe

(PECL)

enchant_dict_describe -- Describes an individual dictionary

Popis

mixed enchant_dict_describe ( resource dict )

Returns the details of the dictionary.

Seznam parametrů

dict

Dictinaray resource

Návratové hodnoty

Vrací TRUE při úspěchu, FALSE při selhání.

Příklady

Příklad 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);
}
?>

Výše uvedený příklad vypíše něco jako:

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