downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<enchant_dict_checkenchant_dict_get_error>
Last updated: Thu, 26 Jun 2008

enchant_dict_describe

(PECL enchant:0.1-1.0.1)

enchant_dict_describe — Describes an individual dictionary

Description

mixed enchant_dict_describe ( resource $dict )

Returns the details of the dictionary.

Parameters

dict

Dictinaray resource

Return Values

Returns TRUE on success or FALSE on failure.

Examples

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

The above example will output something similar to:

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



add a noteadd a note User Contributed Notes
Describes an individual dictionary
There are no user contributed notes for this page.




<enchant_dict_checkenchant_dict_get_error>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs