Created
December 16, 2016 15:19
-
-
Save rumblestrut/f8f11b6c038aea7d59303872e07f437c to your computer and use it in GitHub Desktop.
It's an array of U.S. States.
This file contains hidden or 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
| function stateOrProvince() { | |
| $array = array( | |
| '' => '', | |
| 'AL' => 'Alabama', | |
| 'AK' => 'Alaska', | |
| 'AZ' => 'Arizona', | |
| 'AR' => 'Arkansas', | |
| 'CA' => 'California', | |
| 'CO' => 'Colorado', | |
| 'CT' => 'Connecticut', | |
| 'DE' => 'Delaware', | |
| 'DC' => 'District Of Columbia', | |
| 'FL' => 'Florida', | |
| 'GA' => 'Georgia', | |
| 'HI' => 'Hawaii', | |
| 'ID' => 'Idaho', | |
| 'IL' => 'Illinois', | |
| 'IN' => 'Indiana', | |
| 'IA' => 'Iowa', | |
| 'KS' => 'Kansas', | |
| 'KY' => 'Kentucky', | |
| 'LA' => 'Louisiana', | |
| 'ME' => 'Maine', | |
| 'MD' => 'Maryland', | |
| 'MA' => 'Massachusetts', | |
| 'MI' => 'Michigan', | |
| 'MN' => 'Minnesota', | |
| 'MS' => 'Mississippi', | |
| 'MO' => 'Missouri', | |
| 'MT' => 'Montana', | |
| 'NE' => 'Nebraska', | |
| 'NV' => 'Nevada', | |
| 'NH' => 'New Hampshire', | |
| 'NJ' => 'New Jersey', | |
| 'NM' => 'New Mexico', | |
| 'NY' => 'New York', | |
| 'NC' => 'North Carolina', | |
| 'ND' => 'North Dakota', | |
| 'OH' => 'Ohio', | |
| 'OK' => 'Oklahoma', | |
| 'OR' => 'Oregon', | |
| 'PA' => 'Pennsylvania', | |
| 'RI' => 'Rhode Island', | |
| 'SC' => 'South Carolina', | |
| 'SD' => 'South Dakota', | |
| 'TN' => 'Tennessee', | |
| 'TX' => 'Texas', | |
| 'UT' => 'Utah', | |
| 'VT' => 'Vermont', | |
| 'VA' => 'Virginia', | |
| 'WA' => 'Washington', | |
| 'WV' => 'West Virginia', | |
| 'WI' => 'Wisconsin', | |
| 'WY' => 'Wyoming', | |
| ' ' => ' ', | |
| 'AB' => 'Alberta', | |
| 'BC' => 'Colombie-Britannique', | |
| 'PE' => 'Île-du-Prince-Édouard', | |
| 'MB' => 'Manitoba', | |
| 'NB' => 'Nouveau-Brunswick', | |
| 'NS' => 'Nouvelle-Écosse', | |
| 'ON' => 'Ontario', | |
| 'QC' => 'Québec', | |
| 'SK' => 'Saskatchewan', | |
| 'NL' => 'Terre-Neuve-et-Labrador', | |
| 'NU' => 'Nunavut', | |
| 'NT' => 'Territoires du Nord-Ouest', | |
| 'YT' => 'Yukon', | |
| ); | |
| return $array; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment