enchant_dict_describe

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

enchant_dict_describeDescribes an individual dictionary

Beschreibung

enchant_dict_describe(EnchantDictionary$dictionary): array

Returns the details of the dictionary.

Parameter-Liste

dictionary

Ein Enchant-Wörterbuch, das von enchant_broker_request_dict() oder enchant_broker_request_pwl_dict() zurückgegeben wird.

Rückgabewerte

Gibt bei Erfolg true zurück. Bei einem Fehler wird false zurückgegeben.

Changelog

VersionBeschreibung
8.0.0 Der Parameter dictionary erwartet nun eine EnchantDictionary-Instanz; vorher wurde eine Ressource erwartet.
8.0.0 Prior to this version, the function returned false on failure.

Beispiele

Beispiel #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);
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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