Skip to content

ecommerce-utilities/php-countries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rkr/countries

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 ...)
)

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages