Query: enchant_dict_describe
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ENCHANT_DICT_DESCRIBE(3) 1 ENCHANT_DICT_DESCRIBE(3) enchant_dict_describe - Describes an individual dictionarySYNOPSISmixed enchant_dict_describe (resource $dict)DESCRIPTIONReturns the details of the dictionary.PARAMETERSo $dict - Dictionary resourceRETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 A enchant_dict_describe(3) example Check if a dictionary exists using enchant_broker_dict_exists(3) 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); } ?> The above example will output something similar to: Array ( [lang] => en_US [name] => aspell [desc] => Aspell Provider [file] => /usr/lib/enchant/libenchant_aspell.so ) PHP Documentation Group ENCHANT_DICT_DESCRIBE(3)