Created
December 27, 2021 09:18
-
-
Save tobias-kuendig/f114814af7bd3e3c594906c1c8a6ddde to your computer and use it in GitHub Desktop.
Schweizer Kantone als PHP-Array / Swiss cantons as a PHP 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
return [ | |
'AG' => 'Aargau', | |
'AI' => 'Appenzell Innerrhoden', | |
'AR' => 'Appenzell Ausserrhoden', | |
'BE' => 'Bern', | |
'BL' => 'Basel Land', | |
'BS' => 'Basel Stadt', | |
'FR' => 'Freiburg', | |
'GE' => 'Genf / Genève', | |
'GL' => 'Glarus', | |
'GR' => 'Graubünden', | |
'JU' => 'Jura', | |
'LU' => 'Luzern', | |
'NE' => 'Neuchâtel', | |
'NW' => 'Nidwalden', | |
'OW' => 'Obwalden', | |
'SG' => 'St. Gallen', | |
'SH' => 'Schaffhausen', | |
'SO' => 'Solothurn', | |
'SZ' => 'Schwyz', | |
'TG' => 'Thurgau', | |
'TI' => 'Tessin / Ticino', | |
'UR' => 'Uri', | |
'VD' => 'Vaud', | |
'VS' => 'Wallis / Valais', | |
'ZG' => 'Zug', | |
'ZH' => 'Zürich', | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment