rkr/countries

A library to help translating country-names into various standards and to text

0.1.5 2021-12-11 09:30 UTC

This package is auto-updated.

Last update: 2024-03-06 14:39:58 UTC


README

Build Status Latest Stable Version License

The country-codes are copied from umpirsky/country-list. I've only added some code-locators and some translators and removed all those formats not suited for my needs.

Some examples

Get all countries

$provider = new IcuCountryListProvider('en', 'GB');
print_r($provider->getCountries());
Array
(
    [AF] => Afghanistan
    [AX] => Åland Islands
    [AL] => Albania
    [DZ] => Algeria
    [AS] => American Samoa
    [AD] => Andorra
    [AO] => Angola
    [AI] => Anguilla
    (248 more ...)
)

Get the name of a specific country

$provider = new IcuCountryNameLocator('en', 'GB');
echo $provider->getCountry('DE');

Germany

Get all EU-countries:

$provider = new EuCountryProvider('en', 'GB');
print_r($provider->getList());
Array
(
    [BE] => Belgium
    [BG] => Bulgaria
    [CZ] => Czech Republic
    [DK] => Denmark
    [DE] => Germany
    [EE] => Estonia
    [IE] => Ireland
    (22 more ...)
)