PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

enchant_dict_get_error> <enchant_dict_check
Last updated: Fri, 22 Aug 2008

view this page in

enchant_dict_describe

(PECL enchant:0.1-1.0.1)

enchant_dict_describeDescribes an individual dictionary

Descripción

mixed enchant_dict_describe ( resource $dict )

Returns the details of the dictionary.

Lista de parámetros

dict

Dictinaray resource

Valores retornados

Devuelve TRUE si todo se llevó a cabo correctamente, FALSE en caso de fallo.

Ejemplos

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

El resultado del ejemplo seria algo similar a:

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



add a note add a note User Contributed Notes
enchant_dict_describe
There are no user contributed notes for this page.

enchant_dict_get_error> <enchant_dict_check
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites