Skip to content

Instantly share code, notes, and snippets.

@EmileBons
Created March 12, 2018 09:32
Show Gist options
  • Save EmileBons/54f791f9f9badcf5b04c01eee472d530 to your computer and use it in GitHub Desktop.
Save EmileBons/54f791f9f9badcf5b04c01eee472d530 to your computer and use it in GitHub Desktop.
A list of the countries in the European Union with their ISO 3166-1 (alpha 2) country code as the key and the English country name as the value.
$euCountries = array(
'AT' => 'Austria',
'BE' => 'Belgium',
'BG' => 'Bulgaria',
'HR' => 'Croatia',
'CY' => 'Cyprus',
'CZ' => 'Czech Republic',
'DK' => 'Denmark',
'EE' => 'Estonia',
'FI' => 'Finland',
'FR' => 'France',
'DE' => 'Germany',
'GR' => 'Greece',
'HU' => 'Hungary',
'IE' => 'Ireland',
'IT' => 'Italy',
'LV' => 'Latvia',
'LT' => 'Lithuania',
'LU' => 'Luxembourg',
'MT' => 'Malta',
'NL' => 'Netherlands',
'PL' => 'Poland',
'PT' => 'Portugal',
'RO' => 'Romania',
'SK' => 'Slovakia',
'SI' => 'Slovenia',
'ES' => 'Spain',
'SE' => 'Sweden',
'GB' => 'United Kingdom'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment