enchant_dict_describe
(PHP 5 >= 5.3.0, PECL enchant >= 0.1.0 )
enchant_dict_describe — توضیح یک دیکشنری تنها
Parameters
- dict
-
منبع دیکشنری
Return Values
Returns TRUE on success or FALSE on failure.
Examples
Example #1 مثال enchant_dict_describe()
بررسی وجود دیکشنری با استفاده از enchant_broker_dict_exists() و نمایش جزئیات آن.
<?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
)
There are no user contributed notes for this page.
