Last active
February 9, 2021 14:21
-
-
Save ftsanjuan/6273831 to your computer and use it in GitHub Desktop.
A PHP array of Canadian provinces (English & French)
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
<?php | |
array( | |
'AB' => "Alberta", | |
'BC' => "British Columbia", | |
'MB' => "Manitoba", | |
'NB' => "New Brunswick", | |
'NL' => "Newfoundland", | |
'NT' => "Northwest Territories", | |
'NS' => "Nova Scotia", | |
'NU' => "Nunavut", | |
'ON' => "Ontario", | |
'PE' => "Prince Edward Island", | |
'QC' => "Quebec", | |
'SK' => "Saskatchewan", | |
'YT' => "Yukon", | |
); |
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
<?php | |
array( | |
'AB' => "Alberta", | |
'BC' => "Colombie Britannique", | |
'MB' => "Manitoba", | |
'NB' => "Nouveau-Brunswick", | |
'NL' => "Terre-Neuve-et-Labrador", | |
'NT' => "Territoires du Nord-Ouest", | |
'NS' => "Nouvelle-Écosse", | |
'NU' => "Nunavut", | |
'ON' => "Ontario", | |
'PE' => "Île du Prince-Édouard", | |
'QC' => "Quebec", | |
'SK' => "Saskatchewan", | |
'YT' => "Territoire du Yukon", | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment