Last active
February 9, 2019 03:45
-
-
Save Rodgath/1727600df675c85c32f2542153c4945b to your computer and use it in GitHub Desktop.
PHP Regions and Continent list array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$country_list = array( | |
"001" => "World", | |
"002" => "Africa", | |
"003" => "North America", | |
"005" => "South America", | |
"009" => "Oceania", | |
"011" => "Western Africa", | |
"013" => "Central America", | |
"014" => "Eastern Africa", | |
"015" => "Northern Africa", | |
"017" => "Middle Africa", | |
"018" => "Southern Africa", | |
"019" => "Americas", | |
"021" => "Northern America", | |
"029" => "Caribbean", | |
"030" => "Eastern Asia", | |
"034" => "Southern Asia", | |
"035" => "South-Eastern Asia", | |
"039" => "Southern Europe", | |
"053" => "Australia and New Zealand", | |
"054" => "Melanesia", | |
"057" => "Micronesian Region", | |
"061" => "Polynesia", | |
"062" => "South-Central Asia", | |
"QO" => "Outlying Oceania", | |
"QU" => "European Union", | |
"142" => "Asia", | |
"143" => "Central Asia", | |
"145" => "Western Asia", | |
"150" => "Europe", | |
"151" => "Eastern Europe", | |
"154" => "Northern Europe", | |
"155" => "Western Europe", | |
"172" => "Commonwealth of Independent States", | |
"200" => "Czechoslovakia", | |
"419" => "Latin America and the Caribbean", | |
"830" => "Channel Islands", | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment