(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 1.0.1)
enchant_broker_list_dicts — Returns a list of available dictionaries
enchant_broker_list_dicts ( EnchantBroker $broker ) : array
Returns a list of available dictionaries with their details.
broker
An Enchant broker returned by enchant_broker_init().
Returns an array of available dictionaries with their details.
| Version | Description |
|---|---|
| 8.0.0 | broker expects an EnchantBroker instance now; previoulsy, a resource was expected. |
| 8.0.0 | Prior to this version, the function returned false on failure. |
Example #1 List all available dictionaries for one broker
<?php $r = enchant_broker_init(); $dicts = enchant_broker_list_dicts($r); print_r($dicts); ?>
The above example will output something similar to:
Array
(
[0] => Array
(
[lang_tag] => de
[provider_name] => aspell
[provider_desc] => Aspell Provider
[provider_file] => /usr/lib/enchant/libenchant_aspell.so
)
[1] => Array
(
[lang_tag] => de_DE
[provider_name] => aspell
[provider_desc] => Aspell Provider
[provider_file] => /usr/lib/enchant/libenchant_aspell.so
)
[3] => Array
(
[lang_tag] => en
[provider_name] => aspell
[provider_desc] => Aspell Provider
[provider_file] => /usr/lib/enchant/libenchant_aspell.so
)
[4] => Array
(
[lang_tag] => en_GB
[provider_name] => aspell
[provider_desc] => Aspell Provider
[provider_file] => /usr/lib/enchant/libenchant_aspell.so
)
[5] => Array
(
[lang_tag] => en_US
[provider_name] => aspell
[provider_desc] => Aspell Provider
[provider_file] => /usr/lib/enchant/libenchant_aspell.so
)
[6] => Array
(
[lang_tag] => hi_IN
[provider_name] => myspell
[provider_desc] => Myspell Provider
[provider_file] => /usr/lib/enchant/libenchant_myspell.so
)
)
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.enchant-broker-list-dicts.php