(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL enchant >= 0.1.0 )
enchant_broker_dict_exists — 判断字典是否存在,使用非空标签
版本 | 描述 |
---|---|
8.0.0 |
broker 现在需要一个 EnchantBroker 实例;之前需要一个 资源。 |
范例 #1 enchant_broker_dict_exists() 示例
<?php
$tag = 'en_US';
$r = enchant_broker_init();
if (enchant_broker_dict_exists($r,$tag)) {
echo $tag . " dictionary found.\n";
}
?>