-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathee-array-of-countries.php
76 lines (73 loc) · 1.49 KB
/
ee-array-of-countries.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php // Mitchell Bennis ([email protected])
// Version 1.1 -- Rev 12.15.23
// PHP 8.3 Approved
$eeCountries = array(
'AU' => 'Australia',
'AT' => 'Austria',
'BY' => 'Belarus',
'BE' => 'Belgium',
'BG' => 'Bulgaria',
'BR' => 'Brazil',
'CA' => 'Canada',
'HR' => 'Croatia',
'CZ' => 'Czech Republic',
'DK' => 'Denmark',
'EE' => 'Estonia',
'FI' => 'Finland',
'FR' => 'France',
'GE' => 'Georgia',
'DE' => 'Germany',
'GR' => 'Greece',
'GL' => 'Greenland',
'HT' => 'Haiti',
'HN' => 'Honduras',
'HK' => 'Hong Kong',
'HU' => 'Hungary',
'IS' => 'Iceland',
'IN' => 'India',
'ID' => 'Indonesia',
'IE' => 'Ireland',
'IL' => 'Israel',
'IT' => 'Italy',
'JM' => 'Jamaica',
'JP' => 'Japan',
'JE' => 'Jersey',
'JO' => 'Jordan',
'KZ' => 'Kazakhstan',
'KE' => 'Kenya',
'KR' => 'Korea',
'LV' => 'Latvia',
'LB' => 'Lebanon',
'LI' => 'Liechtenstein',
'LT' => 'Lithuania',
'LU' => 'Luxembourg',
'MX' => 'Mexico',
'PY' => 'Paraguay',
'PE' => 'Peru',
'PH' => 'Philippines',
'PL' => 'Poland',
'PT' => 'Portugal',
'PR' => 'Puerto Rico',
'QA' => 'Qatar',
'RO' => 'Romania',
'RU' => 'Russian Federation',
'RS' => 'Serbia',
'SG' => 'Singapore',
'SK' => 'Slovakia',
'SI' => 'Slovenia',
'ZA' => 'South Africa',
'ES' => 'Spain',
'SZ' => 'Swaziland',
'SE' => 'Sweden',
'CH' => 'Switzerland',
'TW' => 'Taiwan',
'TH' => 'Thailand',
'TR' => 'Turkey',
'UG' => 'Uganda',
'UA' => 'Ukraine',
'AE' => 'United Arab Emirates',
'GB' => 'United Kingdom',
'US' => 'United States',
'--' => 'Other'
);
?>