Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
Наш чат в Telegram для обмена идеями, проектами, мыслями, людьми в сфере ИТ г.Ростова-на-Дону: @it_rostov
enchant_dict_describe
(PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
enchant_dict_describe — Describes an individual dictionary
Описание
mixed enchant_dict_describe ( resource $dict )Returns the details of the dictionary.
Список параметров
dict -
Dictinaray resource
Возвращаемые значения
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Примеры
Пример #1 A enchant_dict_describe() example
Check if a dictionary exists using enchant_broker_dict_exists() and show the detail of it.
$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 )
Смотрите также:
Описание на ru2.php.net
Описание на php.ru