(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL enchant >= 0.1.0 )
enchant_dict_describe — 描述单个字典
版本 | 描述 |
---|---|
8.0.0 |
dictionary 现在期望一个 EnchantDictionary 实例;以前,期望的是一个 资源。 |
8.0.0 | 在此版本之前,函数在失败时返回 false 。 |
示例 #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);
}
?>
以上示例将输出类似以下内容
Array ( [lang] => en_US [name] => aspell [desc] => Aspell Provider [file] => /usr/lib/enchant/libenchant_aspell.so )