Skip to content

Instantly share code, notes, and snippets.

@ftsanjuan
Last active February 9, 2021 14:21
Show Gist options
  • Save ftsanjuan/6273831 to your computer and use it in GitHub Desktop.
Save ftsanjuan/6273831 to your computer and use it in GitHub Desktop.
A PHP array of Canadian provinces (English & French)
<?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",
);
<?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