enchant_dict_describe

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

enchant_dict_describeDescribe un diccionario

Descripción

enchant_dict_describe(EnchantDictionary $dictionary): array

Devuelve los detalles de un diccionario.

Parámetros

dictionary

An Enchant dictionary returned by enchant_broker_request_dict() or enchant_broker_request_pwl_dict().

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Historial de cambios

Versión Descripción
8.0.0 dictionary expects an EnchantDictionary instance now; previoulsy, a recurso was expected.
8.0.0 Antes de esta versión, esta función devolvía false en caso de fallo.

Ejemplos

Ejemplo #1 Ejemplo con enchant_dict_describe()

Verifica si un diccionario existe utilizando la función enchant_broker_dict_exists() y muestra todos los detalles concernientes a este diccionario.

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

El resultado del ejemplo sería algo similar a:

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top