Skip to content

Instantly share code, notes, and snippets.

@Mykola-Veryha
Created February 18, 2022 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mykola-Veryha/c8913f3f203a0a53b4c11d614bced69f to your computer and use it in GitHub Desktop.
Save Mykola-Veryha/c8913f3f203a0a53b4c11d614bced69f to your computer and use it in GitHub Desktop.
New Zealand states, Australia states
<?php
$states = [
'australia_states' => [
'NSW' => 'New South Wales',
'QLD' => 'Queensland',
'SA' => 'South Australia',
'TAS' => 'Tasmania',
'VIC' => 'Victoria',
'WA' => 'Western Australia',
'ACT' => 'Australian Capital Territory',
'NT' => 'Northern Territory',
],
'new_zealand_states' => [
'NZ-NTL' => 'Northland',
'NZ-AUK' => 'Auckland',
'NZ-WKO' => 'Waikato',
'NZ-BOP' => 'Bay of Plenty',
'NZ-GIS' => 'Gisborne',
'NZ-HKB' => "Hawke's Bay",
'NZ-TKI' => 'Taranaki',
'NZ-MWT' => 'Manawatū-Whanganui',
'NZ-WGN' => 'Wellington',
'NZ-TAS' => 'Tasman',
'NZ-NSN' => 'Nelson',
'NZ-MBH' => 'Marlborough',
'NZ-WTC' => 'West Coast',
'NZ-CAN' => 'Canterbury',
'NZ-OTA' => 'Otago',
'NZ-STL' => 'Southland',
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment