BlaBla.cn

PHP: enchant_dict_describe - Manual

BlaBla.cn
enchant_dict_get_error > <enchant_dict_check
Last updated: Wed, 19 Mar 2008

enchant_dict_describe

(PECL enchant:0.1-1.0.1)

enchant_dict_describe — Describes an individual dictionary

说明

mixed enchant_dict_describe ( resource $dict )

Returns the details of the dictionary.

参数

dict

Dictinaray resource

返回值

如果成功则返回 TRUE ,失败则返回 FALSE

范例

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

上例的输出类似于:

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

    




enchant_dict_get_error > <enchant_dict_check
Last updated: Wed, 19 Mar 2008
 
 
BlaBla.cn

© 2005-2008 BlaBla.cn 版权所有