(PHP 5 >= 5.4.0, PHP 7, PHP 8, PECL intl >= 2.0.0)
Transliterator::listIDs -- transliterator_list_ids — Get transliterator IDs
Object-oriented style
Procedural style
Returns an array with the registered transliterator IDs.
This function has no parameters.
   An array of registered transliterator IDs on success,
    or false on failure.
  
Example #1 Retrieving the registered transliterator IDs
<?php
print_r(Transliterator::listIDs());
?>
The above example will output something similar to:
Array
(
    [0] => ASCII-Latin
    [1] => Accents-Any
    [2] => Amharic-Latin/BGN
    [3] => Any-Accents
    [4] => Any-Publishing
...
    [650] => Any-ps_Latn/BGN
    [651] => Any-tk/BGN
    [652] => Any-ch_FONIPA
    [653] => Any-cs_FONIPA
    [654] => Any-cy_FONIPA
)