(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL enchant >= 0.1.0)
enchant_broker_describe — 枚举 Enchant 提供者
枚举 Enchant 提供者并提供一些基本信息。相同的信息通过 phpinfo() 提供。
返回一个包含可用 Enchant 提供者的详细信息的 array。
版本 | 描述 |
---|---|
8.0.0 |
broker 现在需要一个 EnchantBroker 实例;以前需要一个 resource。 |
8.0.0 | 在此版本之前,该函数在失败时返回 false 。 |
示例 #1 列出给定代理提供的后端
<?php
$r = enchant_broker_init();
$bprovides = enchant_broker_describe($r);
echo "当前代理提供以下后端(s):\n";
print_r($bprovides);
?>
上面的示例将输出类似于以下内容
Current broker provides the following backend(s): Array ( [0] => Array ( [name] => aspell [desc] => Aspell Provider [file] => /usr/lib/enchant/libenchant_aspell.so ) [1] => Array ( [name] => hspell [desc] => Hspell Provider [file] => /usr/lib/enchant/libenchant_hspell.so ) [2] => Array ( [name] => ispell [desc] => Ispell Provider [file] => /usr/lib/enchant/libenchant_ispell.so ) [3] => Array ( [name] => myspell [desc] => Myspell Provider [file] => /usr/lib/enchant/libenchant_myspell.so ) )