Skip to content

Instantly share code, notes, and snippets.

@floptwo
Last active August 29, 2015 14:01
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 floptwo/312e59a3b9ddeabaa6bc to your computer and use it in GitHub Desktop.
Save floptwo/312e59a3b9ddeabaa6bc to your computer and use it in GitHub Desktop.
<?php
// Code postaux des villes des Antilles-Guyane
// Sources :
// http://fr.wikipedia.org/wiki/Liste_des_communes_de_la_Guadeloupe
// http://fr.wikipedia.org/wiki/Liste_des_communes_de_la_Guyane
// http://fr.wikipedia.org/wiki/Liste_des_communes_de_la_Martinique
$villes = [
// Guadeloupe
'97139' => "Les Abymes",
'97142' => "Les Abymes",
'97121' => "Anse-Bertrand",
'97122' => "Baie-Mahault",
'97123' => "Baillif",
'97100' => "Basse-Terre",
'97125' => "Bouillante",
'97130' => "Capesterre-Belle-Eau",
'97140' => "Capesterre-de-Marie-Galante",
'97126' => "Deshaies",
'97127' => "La Désirade",
'97190' => "Le Gosier",
'97113' => "Gourbeyre",
'97128' => "Goyave",
'97112' => "Grand-Bourg",
'97129' => "Lamentin",
'97111' => "Morne-à-l'Eau",
'97160' => "Le Moule",
'97170' => "Petit-Bourg",
'97131' => "Petit-Canal",
'97110' => "Pointe-à-Pitre",
'97116' => "Pointe-Noire",
'97117' => "Port-Louis",
'97120' => "Saint-Claude",
'97118' => "Saint-François",
'97134' => "Saint-Louis",
'97180' => "Sainte-Anne",
'97115' => "Sainte-Rose",
'97136' => "Terre-de-Bas",
'97137' => "Terre-de-Haut",
'97114' => "Trois-Rivières",
'97141' => "Vieux-Fort",
'97119' => "Vieux-Habitants",
// Guyane Française
'97317' => "Apatou",
'97319' => "Awala-Yalimapo",
'97330' => "Camopi",
'97300' => "Cayenne",
'97340' => "Grand-Santi",
'97350' => "Iracoubo",
'97310' => "Kourou",
'97355' => "Macouria",
'97360' => "Mana",
'97370' => "Maripasoula",
'97351' => "Matoury",
'97356' => "Montsinéry-Tonnegrande",
'97380' => "Ouanary",
'97316' => "Papaïchton",
'97390' => "Régina",
'97354' => "Rémire-Montjoly",
'97311' => "Roura",
'97312' => "Saint-Élie",
'97313' => "Saint-Georges-de-l'Oyapock",
'97320' => "Saint-Laurent-du-Maroni",
'97314' => "Saül",
'97315' => "Sinnamary",
// Martinique
'97216' => "L'Ajoupa-Bouillon",
'97217' => "Les Anses-d'Arlet",
'97218' => "Basse-Pointe",
'97222' => "Bellefontaine",
'97221' => "Le Carbet",
'97222' => "Case-Pilote",
'97223' => "Le Diamant",
'97224' => "Ducos",
'97250' => "Fonds-Saint-Denis",
'97200' => "Fort-de-France",
'97234' => "Fort-de-France",
'97240' => "Le François",
'97218' => "Grand'Rivière",
'97213' => "Gros-Morne",
'97232' => "Le Lamentin",
'97214' => "Le Lorrain",
'97218' => "Macouba",
'97225' => "Le Marigot",
'97290' => "Le Marin",
'97260' => "Le Morne-Rouge",
'97226' => "Le Morne-Vert",
'97250' => "Le Prêcheur",
'97211' => "Rivière-Pilote",
'97215' => "Rivière-Salée",
'97231' => "Le Robert",
'97227' => "Sainte-Anne",
'97228' => "Sainte-Luce",
'97230' => "Sainte-Marie",
'97270' => "Saint-Esprit",
'97212' => "Saint-Joseph",
'97250' => "Saint-Pierre",
'97233' => "Schœlcher",
'97220' => "La Trinité",
'97229' => "Les Trois-Îlets",
'97280' => "Le Vauclin",
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment