11 |
jpm |
1 |
<?php
|
771 |
delphine |
2 |
// /opt/lampp/bin/php cli.php chorodep -a chargerVersions
|
242 |
jpm |
3 |
class Chorodep extends EfloreScript {
|
11 |
jpm |
4 |
protected $nbre_dep = 0;
|
|
|
5 |
private $type_donnee = '';
|
|
|
6 |
protected $aso_num_nomenc = array();
|
|
|
7 |
protected $nbre_ligne = 0;
|
|
|
8 |
protected $nbre_plte_presente = 0;
|
|
|
9 |
protected $nbre_plte_a_confirmer = 0;
|
|
|
10 |
protected $nbre_plte_douteux = 0;
|
|
|
11 |
protected $nbre_plte_erreur = 0;
|
|
|
12 |
protected $nbre_plte_disparue = 0;
|
242 |
jpm |
13 |
protected $nbre_plte_erreur_a_confirmer = 0;
|
11 |
jpm |
14 |
protected $nc_autres_valeur_champ = 0;
|
242 |
jpm |
15 |
protected $nc_nbre_plte_presente = 0;
|
|
|
16 |
protected $nc_nbre_plte_a_confirmer = 0;
|
|
|
17 |
protected $nc_nbre_plte_douteux = 0;
|
|
|
18 |
protected $nc_nbre_plte_disparue = 0;
|
|
|
19 |
protected $nc_nbre_plte_erreur = 0;
|
|
|
20 |
protected $nc_nbre_plte_erreur_a_confirmer = 0;
|
|
|
21 |
|
11 |
jpm |
22 |
protected $aso_totaux_dep = array();
|
242 |
jpm |
23 |
private $fichier_verif = './chorodep_verif.html';
|
11 |
jpm |
24 |
|
242 |
jpm |
25 |
public function executer() {
|
|
|
26 |
try {
|
|
|
27 |
$this->initialiserProjet('chorodep');
|
11 |
jpm |
28 |
|
242 |
jpm |
29 |
// Lancement de l'action demandée
|
|
|
30 |
$cmd = $this->getParametre('a');
|
|
|
31 |
switch ($cmd) {
|
|
|
32 |
|
|
|
33 |
case 'chargerTous' :
|
|
|
34 |
$this->chargerStructureSql();
|
|
|
35 |
$this->chargerVersions();
|
|
|
36 |
$this->chargerChorodepContributeurs();
|
|
|
37 |
$this->chargerChorodepSources();
|
|
|
38 |
$this->chargerChorodepOntologies();
|
|
|
39 |
break;
|
|
|
40 |
case 'chargerStructureSql' :
|
|
|
41 |
$this->chargerStructureSql();
|
|
|
42 |
break;
|
|
|
43 |
case 'chargerVersions' :
|
|
|
44 |
$this->chargerVersions();
|
|
|
45 |
break;
|
|
|
46 |
case 'chargerChorodep' :
|
|
|
47 |
$this->chargerChorodepContributeurs();
|
|
|
48 |
$this->chargerChorodepSources();
|
|
|
49 |
$this->chargerChorodepOntologies();
|
|
|
50 |
break;
|
|
|
51 |
case 'verifierDonnees' :
|
|
|
52 |
$this->initialiserTraitement();
|
|
|
53 |
$this->verifierDonnees();
|
|
|
54 |
break;
|
|
|
55 |
case 'supprimerTous' :
|
|
|
56 |
$this->supprimerTous();
|
|
|
57 |
break;
|
|
|
58 |
default :
|
|
|
59 |
throw new Exception("Erreur : la commande '$cmd' n'existe pas!");
|
|
|
60 |
}
|
|
|
61 |
} catch (Exception $e) {
|
|
|
62 |
$this->traiterErreur($e->getMessage());
|
|
|
63 |
}
|
11 |
jpm |
64 |
}
|
|
|
65 |
|
242 |
jpm |
66 |
private function chargerChorodepContributeurs() {
|
|
|
67 |
$chemin = Config::get('chemins.chorodepContributeurs');
|
|
|
68 |
$table = Config::get('tables.chorodepContributeurs');
|
|
|
69 |
$requete = "LOAD DATA INFILE '$chemin' ".
|
|
|
70 |
"REPLACE INTO TABLE $table ".
|
|
|
71 |
'CHARACTER SET utf8 '.
|
|
|
72 |
'FIELDS '.
|
|
|
73 |
" TERMINATED BY '\t' ".
|
|
|
74 |
" ENCLOSED BY '' ".
|
|
|
75 |
" ESCAPED BY '\\\' ".
|
|
|
76 |
'IGNORE 2 LINES';
|
|
|
77 |
$this->getBdd()->requeter($requete);
|
|
|
78 |
}
|
11 |
jpm |
79 |
|
242 |
jpm |
80 |
private function chargerChorodepSources() {
|
|
|
81 |
$chemin = Config::get('chemins.chorodepSources');
|
|
|
82 |
$table = Config::get('tables.chorodepSources');
|
|
|
83 |
$requete = "LOAD DATA INFILE '$chemin' ".
|
|
|
84 |
"REPLACE INTO TABLE $table ".
|
|
|
85 |
'CHARACTER SET utf8 '.
|
|
|
86 |
'FIELDS '.
|
|
|
87 |
" TERMINATED BY '\t' ".
|
|
|
88 |
" ENCLOSED BY '' ".
|
|
|
89 |
" ESCAPED BY '\\\' ".
|
|
|
90 |
'IGNORE 2 LINES';
|
|
|
91 |
$this->getBdd()->requeter($requete);
|
|
|
92 |
}
|
11 |
jpm |
93 |
|
242 |
jpm |
94 |
private function chargerChorodepOntologies() {
|
|
|
95 |
$chemin = Config::get('chemins.chorodepOntologies');
|
|
|
96 |
$table = Config::get('tables.chorodepOntologies');
|
|
|
97 |
$requete = "LOAD DATA INFILE '$chemin' ".
|
|
|
98 |
"REPLACE INTO TABLE $table ".
|
|
|
99 |
'CHARACTER SET utf8 '.
|
|
|
100 |
'FIELDS '.
|
|
|
101 |
" TERMINATED BY '\t' ".
|
|
|
102 |
" ENCLOSED BY '' ".
|
|
|
103 |
" ESCAPED BY '\\\' ".
|
|
|
104 |
'IGNORE 1 LINES';
|
|
|
105 |
$this->getBdd()->requeter($requete);
|
11 |
jpm |
106 |
}
|
|
|
107 |
|
242 |
jpm |
108 |
private function chargerVersions() {
|
|
|
109 |
$versions = explode(',', Config::get('versions'));
|
|
|
110 |
$versionsDonnees = explode(',', Config::get('versionsDonnees'));
|
|
|
111 |
foreach ($versions as $id => $version) {
|
|
|
112 |
$versionDonnees = $versionsDonnees[$id];
|
|
|
113 |
$this->chargerStructureSqlVersion($versionDonnees);
|
|
|
114 |
$this->chargerDonneesVersion($versionDonnees, $version);
|
11 |
jpm |
115 |
}
|
|
|
116 |
}
|
242 |
jpm |
117 |
|
|
|
118 |
private function chargerStructureSqlVersion($versionDonnees) {
|
249 |
jpm |
119 |
$fichierSqlTpl = Config::get('chemins.structureSqlVersionTpl');
|
242 |
jpm |
120 |
$fichierSql = sprintf($fichierSqlTpl, $versionDonnees, $versionDonnees);
|
|
|
121 |
$contenuSql = $this->recupererContenu($fichierSql);
|
|
|
122 |
$this->executerScripSql($contenuSql);
|
|
|
123 |
}
|
|
|
124 |
|
|
|
125 |
private function chargerDonneesVersion($versionDonnees, $version) {
|
249 |
jpm |
126 |
$fichierTsvTpl = Config::get('chemins.chorodepTpl');
|
242 |
jpm |
127 |
$fichierTsv = sprintf($fichierTsvTpl, $versionDonnees, $versionDonnees);
|
249 |
jpm |
128 |
$tableTpl = Config::get('tables.chorodepTpl');
|
242 |
jpm |
129 |
$table = sprintf($tableTpl, $version);
|
773 |
delphine |
130 |
$champs = Config::get('chorodepChamps'.$version);
|
242 |
jpm |
131 |
$requete = "LOAD DATA INFILE '$fichierTsv' ".
|
|
|
132 |
"REPLACE INTO TABLE $table ".
|
|
|
133 |
'CHARACTER SET utf8 '.
|
|
|
134 |
'FIELDS '.
|
|
|
135 |
" TERMINATED BY '\t' ".
|
|
|
136 |
" ENCLOSED BY '' ".
|
|
|
137 |
" ESCAPED BY '\\\' ".
|
|
|
138 |
"($champs) ";
|
|
|
139 |
$this->getBdd()->requeter($requete);
|
|
|
140 |
}
|
|
|
141 |
|
11 |
jpm |
142 |
private function initialiserTraitement() {
|
|
|
143 |
//------------------------------------------------------------------------------------------------------------//
|
|
|
144 |
// Récupération des informations à vérifier
|
242 |
jpm |
145 |
$table = $this->getNomTableDernierVersion();
|
11 |
jpm |
146 |
$requete = 'SELECT * '.
|
242 |
jpm |
147 |
"FROM $table ";
|
|
|
148 |
$taxons = $this->getBdd()->recupererTous($requete);
|
11 |
jpm |
149 |
$tax_col = $taxons[1];
|
|
|
150 |
$col = array_keys($tax_col);
|
|
|
151 |
$this->initialiserTableaux($col);
|
|
|
152 |
//------------------------------------------------------------------------------------------------------------//
|
|
|
153 |
// Analyse des données
|
|
|
154 |
echo 'Traitement de la ligne n° :';
|
|
|
155 |
$i = 0;
|
|
|
156 |
$j = 0;
|
|
|
157 |
$aso_departements_analyses = array();
|
|
|
158 |
$this->nbre_ligne_avec_guillemet = 0;
|
|
|
159 |
foreach ($taxons as $aso_champs) {
|
|
|
160 |
$nom = $aso_champs['nom_sci'];
|
|
|
161 |
$num_taxo = $aso_champs['num_tax'];
|
|
|
162 |
$num_nomenc = $aso_champs['num_nom'];
|
|
|
163 |
if ($num_nomenc == 'nc') {
|
|
|
164 |
$this->nc_nbre_nom++;
|
|
|
165 |
} else if ($num_nomenc != 'nc') {
|
|
|
166 |
$this->nbre_nom++;
|
|
|
167 |
// Vérification de la nom duplication des numéros nomenclaturaux
|
|
|
168 |
if ( !array_key_exists($num_nomenc, (array) $this->aso_num_nomenc) ) {
|
|
|
169 |
$this->aso_num_nomenc[$num_nomenc]['compteur'] = 1;
|
|
|
170 |
$this->aso_num_nomenc[$num_nomenc]['ligne'] = ($this->nbre_ligne+1);
|
|
|
171 |
} else {
|
|
|
172 |
$this->aso_num_nomenc[$num_nomenc]['compteur']++;
|
|
|
173 |
$this->aso_num_nomenc[$num_nomenc]['ligne'] .= ' - '.($this->nbre_ligne+1);
|
|
|
174 |
}
|
|
|
175 |
}
|
|
|
176 |
foreach ($aso_champs as $cle => $val ) {# Pour chaque département du taxon, on regarde la valeur
|
|
|
177 |
$this->nbre_ligne_avec_guillemet += preg_match('/"/', $val);
|
|
|
178 |
if ( preg_match('/^\d{2}$/', $cle) ) {# Nous vérifions que le nom du champs comprend bien le numéro du département entre ()
|
|
|
179 |
$nd = $cle;# Numéro du département
|
|
|
180 |
// Nous comptons le nombre de département en base de données
|
|
|
181 |
if (!isset($aso_departements_analyses[$nd])) {
|
|
|
182 |
$this->nbre_dep_analyse++;
|
|
|
183 |
$aso_departements_analyses[$nd] = $nd;
|
|
|
184 |
}
|
|
|
185 |
if ( $num_nomenc != 'nc' && isset($val) && $val != '') {# Si le taxon n'est pas abscent du département
|
|
|
186 |
if ($val == '1') {# Présent
|
|
|
187 |
// Calcul du nombre de plante ayant un statut "Présent"
|
|
|
188 |
$this->nbre_plte_presente++;
|
|
|
189 |
// Stockage par département du nombre de plante ayant un statut "Présent"
|
|
|
190 |
$this->aso_totaux_dep[$nd]['plte_presente']++;
|
|
|
191 |
// Stockage des informations
|
|
|
192 |
$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 3, $this->id_donnee_choro++);
|
|
|
193 |
} else if ($val == '1?') {# Présence à confirmer
|
|
|
194 |
// Calcul du nombre de plante ayant un statut "Présence à confirmer"
|
|
|
195 |
$this->nbre_plte_a_confirmer++;
|
|
|
196 |
// Stockage par département du nombre de plante ayant un statut "Présence à confirmer"
|
|
|
197 |
$this->aso_totaux_dep[$nd]['plte_a_confirmer']++;
|
|
|
198 |
// Stockage des informations
|
|
|
199 |
$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 4, $this->id_donnee_choro++);
|
|
|
200 |
} else if (preg_match('/^\s*(?:\?)\s*$/', $val)) {# Douteux
|
|
|
201 |
// Calcul du nombre de plante ayant un statut "Disparu ou douteux"
|
|
|
202 |
$this->nbre_plte_douteux++;
|
|
|
203 |
// Stockage par département du nombre de plante ayant un statut "Douteux"
|
|
|
204 |
$this->aso_totaux_dep[$nd]['plte_douteux']++;
|
|
|
205 |
// Stockage des informations
|
|
|
206 |
$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 5, $this->id_donnee_choro++);
|
|
|
207 |
if (preg_match('/(?: \?|\? | \? )/', $val)) {# Douteux
|
|
|
208 |
// Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "?".
|
|
|
209 |
$this->autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
210 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
211 |
}
|
|
|
212 |
} elseif (preg_match('/^\s*(?:#)\s*$/', $val)) {# Erreur
|
|
|
213 |
# Calcul du nombre de plante ayant un statut "Erreur"
|
|
|
214 |
$this->nbre_plte_erreur++;
|
|
|
215 |
# Stockage par département du nombre de plante ayant un statut "Erreur"
|
|
|
216 |
$this->aso_totaux_dep[$nd]['plte_erreur']++;
|
|
|
217 |
# Stockage des informations
|
|
|
218 |
$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 6, $this->id_donnee_choro++);
|
|
|
219 |
if (preg_match('/(?: #|# | # )/', $val)) {# Erreur avec espace
|
|
|
220 |
# Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#".
|
|
|
221 |
$autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
222 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
223 |
}
|
|
|
224 |
} elseif (preg_match('/^\s*(?:-\|-)\s*$/', $val)) {# Disparu
|
|
|
225 |
# Calcul du nombre de plante ayant un statut "Disparu"
|
|
|
226 |
$this->nbre_plte_disparue++;
|
|
|
227 |
# Stockage par département du nombre de plante ayant un statut "Disparu"
|
|
|
228 |
$this->aso_totaux_dep[$nd]['plte_disparue']++;
|
|
|
229 |
# Stockage des informations
|
|
|
230 |
$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 6, $this->id_donnee_choro++);
|
|
|
231 |
if (preg_match('/(?: -\|-|-\|- | -\|- )/', $val)) {# Disparu avec espace
|
|
|
232 |
# Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "-|-".
|
|
|
233 |
$autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
234 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
235 |
}
|
242 |
jpm |
236 |
} elseif (preg_match('/^\s*(?:#\?)\s*$/', $val)) {# Erreur à confirmer
|
|
|
237 |
# Calcul du nombre de plante ayant un statut "Erreur à confirmer"
|
|
|
238 |
$this->nbre_plte_erreur_a_confirmer++;
|
|
|
239 |
# Stockage par département du nombre de plante ayant un statut "Erreur à confirmer"
|
|
|
240 |
$this->aso_totaux_dep[$nd]['plte_erreur_a_confirmer']++;
|
|
|
241 |
# Stockage des informations
|
|
|
242 |
$this->tab_choro_dep[$j] = array(ZgFrDepartements::getIdChaine($nd), $num_taxo, $num_nomenc, 6, $this->id_donnee_choro++);
|
|
|
243 |
if (preg_match('/^(?:\s+#\?|#\?\s+|\s+#\?\s+)$/', $val)) {# Erreur à confirmer avec espace
|
|
|
244 |
# Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#?".
|
|
|
245 |
$autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
246 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
247 |
}
|
11 |
jpm |
248 |
} else {
|
|
|
249 |
// Ajout de la valeur dans une variable car elle n'est pas conforme.
|
|
|
250 |
$this->autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
251 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
252 |
}
|
|
|
253 |
$j++;
|
|
|
254 |
} else if (isset($val) && $val != '') {
|
|
|
255 |
if ($val == '1') {# Présent
|
|
|
256 |
// Calcul du nombre de plante 'nc' ayant un statut "Présent"
|
|
|
257 |
$this->nc_nbre_plte_presente++;
|
|
|
258 |
// Stockage par département du nombre de plante 'nc' ayant un statut "Présent"
|
|
|
259 |
$this->aso_totaux_dep[$nd]['nc_plte_presente']++;
|
|
|
260 |
} elseif ($val == '1?') {# Présence à confirmer
|
|
|
261 |
// Calcul du nombre de plante 'nc' ayant un statut "Présence à confirmer"
|
|
|
262 |
$this->nc_nbre_plte_a_confirmer++;
|
|
|
263 |
// Stockage par département du nombre de plante 'nc' ayant un statut "Présence à confirmer"
|
|
|
264 |
$this->aso_totaux_dep[$nd]['nc_plte_a_confirmer']++;
|
|
|
265 |
} elseif (preg_match('/^(?:\?| \?|\? | \?)$/', $val)) {# Douteux
|
|
|
266 |
// Calcul du nombre de plante 'nc' ayant un statut "Douteux"
|
|
|
267 |
$this->nc_nbre_plte_douteux++;
|
|
|
268 |
// Stockage par département du nombre de plante 'nc' ayant un statut "Douteux"
|
|
|
269 |
$this->aso_totaux_dep[$nd]['nc_plte_douteux']++;
|
|
|
270 |
if (preg_match('/(?: \?|\? | \? )/', $val)) {# Douteux
|
|
|
271 |
// Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "?".
|
|
|
272 |
$this->nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
273 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
274 |
}
|
|
|
275 |
} elseif (preg_match('/^(?:#| #|# | # )$/', $val)) {# Erreur
|
|
|
276 |
# Calcul du nombre de plante 'nc' ayant un statut "Erreur"
|
|
|
277 |
$this->nc_nbre_plte_erreur++;
|
|
|
278 |
# Stockage par département du nombre de plante 'nc' ayant un statut "Erreur"
|
|
|
279 |
$this->aso_totaux_dep[$nd]['nc_plte_erreur']++;
|
|
|
280 |
if (preg_match('/(?: #|# | # )/', $val)) {# Erreur avec espace
|
|
|
281 |
# Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#".
|
|
|
282 |
$nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
283 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
284 |
}
|
|
|
285 |
} elseif (preg_match('/^\s*(?:-\|-)\s*$/', $val)) {# Disparu
|
|
|
286 |
# Calcul du nombre de plante 'nc' ayant un statut "Disparu"
|
|
|
287 |
$this->nc_nbre_plte_disparue++;
|
|
|
288 |
# Stockage par département du nombre de plante 'nc' ayant un statut "Disparu"
|
|
|
289 |
$this->aso_totaux_dep[$nd]['nc_plte_disparue']++;
|
|
|
290 |
if (preg_match('/(?: -\|-|-\|- | -\|- )/', $val)) {# Disparu avec espace
|
|
|
291 |
# Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "-|-".
|
|
|
292 |
$nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
293 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
294 |
}
|
242 |
jpm |
295 |
} elseif (preg_match('/^\s*(?:#\?)\s*$/', $val)) {# Erreur à confirmer
|
|
|
296 |
# Calcul du nombre de plante 'nc' ayant un statut "Erreur à confirmer"
|
|
|
297 |
$this->nc_nbre_plte_erreur_a_confirmer++;
|
|
|
298 |
# Stockage par département du nombre de plante 'nc' ayant un statut "Erreur à confirmer"
|
|
|
299 |
$this->aso_totaux_dep[$nd]['nc_plte_erreur_a_confirmer']++;
|
|
|
300 |
if (preg_match('/^(?:\s+#\?|#\?\s+|\s+#\?\s+)$/', $val)) {# Erreur à confirmer avec espace
|
|
|
301 |
# Ajout de la valeur dans une variable car elle n'est pas tout à fait conforme à "#?".
|
|
|
302 |
$nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
303 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
304 |
}
|
11 |
jpm |
305 |
} else {
|
|
|
306 |
// Ajout de la valeur dans une variable car elle n'est pas conforme.
|
|
|
307 |
$this->nc_autres_valeur_champ .= '<'.$val.'> '.'(Ligne n°: '.($this->nbre_ligne+2).
|
|
|
308 |
' - N° nomenclatural: '.$num_nomenc.' - N° département: '.$nd.')<br />';
|
|
|
309 |
}
|
|
|
310 |
}
|
|
|
311 |
// Affichage dans la console du numéro de l'enregistrement analysé.
|
|
|
312 |
//echo str_repeat(chr(8), ( strlen( $i ) + 1 ))."\t".$i++;
|
|
|
313 |
}
|
|
|
314 |
}// fin du foreach
|
|
|
315 |
// Affichage dans la console du numéro de l'enregistrement analysé.
|
|
|
316 |
echo str_repeat(chr(8), ( strlen( $this->nbre_ligne ) + 1 ))."\t".$this->nbre_ligne++;
|
|
|
317 |
}
|
|
|
318 |
echo "\n";
|
|
|
319 |
}
|
|
|
320 |
|
242 |
jpm |
321 |
private function initialiserTableaux($dep) {
|
|
|
322 |
foreach ($dep as $code_dep) {
|
|
|
323 |
if ( preg_match('/^\d{2}$/', $code_dep) ) {
|
|
|
324 |
$this->aso_totaux_dep[$code_dep]['plte_presente'] = 0;
|
|
|
325 |
$this->aso_totaux_dep[$code_dep]['plte_a_confirmer'] = 0;
|
|
|
326 |
$this->aso_totaux_dep[$code_dep]['plte_douteux'] = 0;
|
|
|
327 |
$this->aso_totaux_dep[$code_dep]['plte_erreur'] = 0;
|
|
|
328 |
$this->aso_totaux_dep[$code_dep]['plte_disparue'] = 0;
|
|
|
329 |
$this->aso_totaux_dep[$code_dep]['plte_erreur_a_confirmer'] = 0;
|
|
|
330 |
$this->aso_totaux_dep[$code_dep]['autres_valeur_champ'] = 0;
|
|
|
331 |
$this->aso_totaux_dep[$code_dep]['nc_plte_presente'] = 0;
|
|
|
332 |
$this->aso_totaux_dep[$code_dep]['nc_plte_a_confirmer'] = 0;
|
|
|
333 |
$this->aso_totaux_dep[$code_dep]['nc_plte_douteux'] = 0;
|
|
|
334 |
$this->aso_totaux_dep[$code_dep]['nc_plte_erreur'] = 0;
|
|
|
335 |
$this->aso_totaux_dep[$code_dep]['nc_plte_disparue'] = 0;
|
|
|
336 |
$this->aso_totaux_dep[$code_dep]['nc_plte_erreur_a_confirmer'] = 0;
|
|
|
337 |
$this->aso_totaux_dep[$code_dep]['nc_autres_valeur_champ'] = 0;
|
|
|
338 |
}
|
|
|
339 |
}
|
|
|
340 |
}
|
|
|
341 |
|
|
|
342 |
private function verifierDonnees() {
|
11 |
jpm |
343 |
// Ouverture du fichier contenant les résultats (sortie)
|
|
|
344 |
if (!$handle = fopen($this->fichier_verif, 'w')) {
|
|
|
345 |
echo "Impossible d'ouvrir le fichier ($this->fichier_verif)";
|
|
|
346 |
exit;
|
|
|
347 |
}
|
|
|
348 |
|
|
|
349 |
// Création de la page
|
|
|
350 |
$page = '<html>'."\n";
|
|
|
351 |
$page .= '<head>'."\n";
|
242 |
jpm |
352 |
$page .= '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'."\n";
|
11 |
jpm |
353 |
$page .= '<title>RESULTAT DE LA VERIFICATION DU FICHIER TABULE DE LA CHOROLOGIE</title>'."\n";
|
|
|
354 |
$page .= '</head>'."\n";
|
|
|
355 |
$page .= '<body>'."\n";
|
|
|
356 |
$page .= '<h1>RESULTAT DE LA VERIFICATION DU FICHIER TABULE DE LA CHOROLOGIE</h1>'."\n";
|
|
|
357 |
$page .= '<hr/>'."\n";
|
|
|
358 |
$page .= '<p>'.
|
|
|
359 |
'Adresse fichier analysé : '.'<br />'."\n".
|
|
|
360 |
'</p>'."\n";
|
|
|
361 |
$page .= '<hr/>'."\n";
|
|
|
362 |
$page .= '<h2>RESULTATS PROGRAMME DE VERIFICATION</h2>'."\n";
|
|
|
363 |
$page .= '<p>'.
|
|
|
364 |
'Nom du programme générant ce fichier : '.__FILE__.'<br />'."\n".
|
|
|
365 |
'Nombre de lignes analysées : '.$this->nbre_ligne.'<br />'."\n".
|
|
|
366 |
'Nbre de départements analysés : '.$this->nbre_dep_analyse.'<br />'."\n".
|
242 |
jpm |
367 |
'Date d\'exécution du programme : '.date('d.m.Y').'<br />'."\n".
|
11 |
jpm |
368 |
'</p>'."\n";
|
|
|
369 |
$page .= '<hr/>'."\n";
|
|
|
370 |
$page .= '<h2>RESULTATS ANALYSE CHOROLOGIE</h2>'."\n";
|
|
|
371 |
$page .= '<p>'.
|
|
|
372 |
'Nombre de nom "nc" : '.$this->nc_nbre_nom.'<br />'."\n".
|
|
|
373 |
'Nombre de nom : '.$this->nbre_nom.'<br />'."\n".
|
242 |
jpm |
374 |
'Valeurs autres que 1, 1?, ?, #, #? et -|- : '.$this->autres_valeur_champ.'<br />'."\n".
|
|
|
375 |
'Valeurs autres que 1, 1?, ?, #, #? et -|- pour les plantes nc : <br />'."\n".$this->nc_autres_valeur_champ.'</br>'."\n".
|
11 |
jpm |
376 |
'</p>'."\n";
|
|
|
377 |
$page .= '<hr/>'."\n";
|
|
|
378 |
$page .= '<h2>RESULTATS ANALYSE des CHAMPS</h2>'."\n";
|
|
|
379 |
$page .= '<p>'.
|
|
|
380 |
'Nombre de guillemets antislashés: '.$this->nbre_ligne_avec_guillemet.'<br />'."\n".
|
|
|
381 |
'</p>'."\n";
|
|
|
382 |
$page .= '<hr/>'."\n";
|
|
|
383 |
$page .= '<h2>TABLEAUX</h2>'."\n";
|
|
|
384 |
|
|
|
385 |
// Tableau des numéros nomenclaturaux dupliqués
|
|
|
386 |
$table = '<table><thead><tr><th colspan="3">Tableau des numéros nomenclaturaux dupliqués </th></tr>';
|
|
|
387 |
$table .= '<tr><th>Numéro nomenclatural</th><th>Nbre d\'itération</th><th>Lignes</th></tr></thead>';
|
|
|
388 |
$afficher_tab_num_duplique = 0;
|
|
|
389 |
ksort($this->aso_num_nomenc);
|
|
|
390 |
$table .= '<tbody style="text-align: center;">';
|
|
|
391 |
foreach ($this->aso_num_nomenc as $cle_nomenc => $val ) {
|
|
|
392 |
$ligne = '<tr><td>'.$cle_nomenc.'</td><td>'.$val['compteur'].'</td><td>'.$val['ligne'].'</td></tr>';
|
|
|
393 |
if ($val['compteur'] > 1) {
|
|
|
394 |
$table .= $ligne;
|
|
|
395 |
$afficher_tab_num_duplique = 1;
|
|
|
396 |
}
|
|
|
397 |
}
|
|
|
398 |
if ( $afficher_tab_num_duplique == 1 ) {
|
|
|
399 |
$page .= $table.'</tbody></table>';
|
|
|
400 |
}
|
|
|
401 |
|
|
|
402 |
// Tableau des résultats par départements
|
242 |
jpm |
403 |
$table = '<table><thead><tr><th colspan="14">Tableau des résulats par départements</th></tr>';
|
11 |
jpm |
404 |
$table .= '<tr><th>Département</th><th>Nbre pltes présentes</th><th>Nbre pltes à confirmer</th>'.
|
242 |
jpm |
405 |
'<th>Nbre pltes douteuses</th><th>Nbre pltes disparues</th><th>Nbre pltes erreur</th><th>Nbre pltes erreur à confirmer</th>'.
|
11 |
jpm |
406 |
'<th>Total</th><th>Nbre pltes nc présentes</th><th>Nbre pltes nc à confirmer</th>'.
|
242 |
jpm |
407 |
'<th>Nbre nc pltes douteuses</th><th>Nbre nc pltes disparues</th><th>Nbre nc pltes erreur</th><th>Nbre nc pltes erreur à confirmer</th></tr></thead>';
|
11 |
jpm |
408 |
$table .= '<tbody style="text-align: center;">';
|
|
|
409 |
ksort($this->aso_totaux_dep);
|
|
|
410 |
foreach ($this->aso_totaux_dep as $cle_dep => $val ) {
|
242 |
jpm |
411 |
$plt_total = $val{'plte_presente'} + $val{'plte_a_confirmer'} + $val{'plte_douteux'} + $val{'plte_disparue'} + $val{'plte_erreur'} + $val{'plte_erreur_a_confirmer'};
|
11 |
jpm |
412 |
$table .= '<tr><td>'.ZgFrDepartements::getNom($cle_dep).' ('.ZgFrDepartements::getIdChaine($cle_dep).') </td>'.
|
|
|
413 |
'<td>'.$val{'plte_presente'}.'</td><td>'.$val{'plte_a_confirmer'}.'</td><td>'.$val{'plte_douteux'}.'</td>'.
|
242 |
jpm |
414 |
'<td>'.$val{'plte_disparue'}.'</td><td>'.$val{'plte_erreur'}.'</td><td>'.$val{'plte_erreur_a_confirmer'}.'</td><td>'.$plt_total.'</td>'.
|
11 |
jpm |
415 |
'<td>'.$val{'nc_plte_presente'}.'</td><td>'.$val{'nc_plte_a_confirmer'}.'</td><td>'.$val{'nc_plte_douteux'}.'</td>'.
|
242 |
jpm |
416 |
'<td>'.$val{'nc_plte_disparue'}.'</td><td>'.$val{'nc_plte_erreur'}.'</td><td>'.$val{'nc_plte_erreur_a_confirmer'}.'</td></tr>';
|
11 |
jpm |
417 |
}
|
|
|
418 |
|
242 |
jpm |
419 |
$table .= '<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td>'.
|
|
|
420 |
'<td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>';
|
|
|
421 |
$plt_total = $this->nbre_plte_presente + $this->nbre_plte_a_confirmer + $this->nbre_plte_douteux + $this->nbre_plte_disparue + $this->nbre_plte_erreur + $this->nbre_plte_erreur_a_confirmer;
|
11 |
jpm |
422 |
$table .= '<tr><td>Totaux : '.$this->nbre_dep_analyse.' départements</td><td>'.$this->nbre_plte_presente.'</td>'.
|
|
|
423 |
'<td>'.$this->nbre_plte_a_confirmer.'</td><td>'.$this->nbre_plte_douteux.'</td><td>'.$this->nbre_plte_disparue.'</td>'.
|
242 |
jpm |
424 |
'<td>'.$this->nbre_plte_erreur.'</td><td>'.$this->nbre_plte_erreur_a_confirmer.'</td><td>'.$plt_total.'</td>'.
|
11 |
jpm |
425 |
'<td>'.$this->nc_nbre_plte_presente.'</td>'.'<td>'.$this->nc_nbre_plte_a_confirmer.'</td>'.
|
242 |
jpm |
426 |
'<td>'.$this->nc_nbre_plte_douteux.'</td><td>'.$this->nc_nbre_plte_disparue.'</td><td>'.$this->nc_nbre_plte_erreur.'</td><td>'.$this->nc_nbre_plte_erreur_a_confirmer.'</td></tr>';
|
11 |
jpm |
427 |
|
|
|
428 |
$table .= '<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td>'.
|
|
|
429 |
'<td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>';
|
242 |
jpm |
430 |
$total_nbre_plte = ($this->nbre_plte_presente + $this->nbre_plte_a_confirmer + $this->nbre_plte_douteux + $this->nbre_plte_disparue + $this->nbre_plte_erreur + $this->nbre_plte_erreur_a_confirmer);
|
|
|
431 |
$total_nbre_plte_nc = ($this->nc_nbre_plte_presente + $this->nc_nbre_plte_a_confirmer + $this->nc_nbre_plte_douteux + $this->nc_nbre_plte_disparue + $this->nc_nbre_plte_erreur + $this->nc_nbre_plte_erreur_a_confirmer);
|
|
|
432 |
$table .= '<tr><td>Totaux plante / plante nc</td><td colspan="7">'.$total_nbre_plte.'</td>'.
|
|
|
433 |
'<td colspan="6">'.$total_nbre_plte_nc.'</td></tr>';
|
11 |
jpm |
434 |
|
242 |
jpm |
435 |
$table .= '<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td>'.
|
|
|
436 |
'<td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>';
|
11 |
jpm |
437 |
$plt_total = $this->nbre_plte_presente + $this->nc_nbre_plte_presente + $this->nc_nbre_plte_a_confirmer + $this->nbre_plte_a_confirmer;
|
242 |
jpm |
438 |
$table .= '<tr><td>Total plantes présentes et à confirmer</td><td colspan="13">'.$plt_total.'</td></tr>';
|
11 |
jpm |
439 |
|
242 |
jpm |
440 |
$table .= '<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td>'.
|
|
|
441 |
'<td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>';
|
11 |
jpm |
442 |
$plt_total = $this->nbre_plte_presente + $this->nc_nbre_plte_presente;
|
242 |
jpm |
443 |
$table .= '<tr><td>Total plantes présentes</td><td colspan="13">'.$plt_total.'</td></tr>';
|
11 |
jpm |
444 |
|
242 |
jpm |
445 |
$table .= '<tr><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td>'.
|
|
|
446 |
'<td> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td> </td></tr>';
|
11 |
jpm |
447 |
$plt_total = $total_nbre_plte + $total_nbre_plte_nc;
|
242 |
jpm |
448 |
$table .= '<tr><td>Total données chorologiques</td><td colspan="13">'.$plt_total.'</td></tr>';
|
11 |
jpm |
449 |
|
|
|
450 |
$table .= '</tbody></table>';
|
|
|
451 |
$page .= $table;
|
|
|
452 |
|
|
|
453 |
$page .= '<hr/>'."\n";
|
|
|
454 |
$page .= '<h2>NOTES</h2>'."\n";
|
|
|
455 |
$page .= '<p>'.
|
|
|
456 |
'1.- Chaque champ précédé par "ATTENTION" doit être vide.'."\n".
|
|
|
457 |
'S\'il ne l\'est pas, il y a une erreur'."\n".
|
|
|
458 |
'</p>'."\n";
|
|
|
459 |
$page .= '</body>'."\n";
|
|
|
460 |
$page .= '</html>'."\n";
|
|
|
461 |
// Fermeture de la poignée sur le fichier de sortie
|
|
|
462 |
if (fwrite($handle, $page) === FALSE) {
|
|
|
463 |
echo "Impossible d'écrire dans le fichier ($this->fichier_verif)";
|
|
|
464 |
exit;
|
|
|
465 |
}
|
|
|
466 |
echo 'Ecriture du fichier de vérification de la chorologie réalisée!'."\n";
|
|
|
467 |
fclose($handle);
|
|
|
468 |
}
|
|
|
469 |
|
242 |
jpm |
470 |
private function supprimerTous() {
|
|
|
471 |
$tablesChorodep = implode(',', $this->getNomsTablesChorodep());
|
|
|
472 |
$tableContributeurs = Config::get('tables.chorodepContributeurs');
|
|
|
473 |
$tableSources = Config::get('tables.chorodepSources');
|
|
|
474 |
$tableOntologies = Config::get('tables.chorodepOntologies');
|
349 |
jpm |
475 |
$requete = "DROP TABLE IF EXISTS chorodep_meta, $tablesChorodep, $tableContributeurs, $tableSources, $tableOntologies ";
|
242 |
jpm |
476 |
$this->getBdd()->requeter($requete);
|
|
|
477 |
}
|
|
|
478 |
|
|
|
479 |
private function getNomsTablesChorodep() {
|
|
|
480 |
$versions = explode(',', Config::get('versions'));
|
|
|
481 |
$tableTpl = Config::get('tables.chorodepTpl');
|
|
|
482 |
$tablesChorodep = array();
|
|
|
483 |
foreach ($versions as $version) {
|
|
|
484 |
$tablesChorodep[] = sprintf($tableTpl, $version);
|
|
|
485 |
}
|
|
|
486 |
return $tablesChorodep;
|
|
|
487 |
}
|
|
|
488 |
|
|
|
489 |
private function getNomTableDernierVersion() {
|
|
|
490 |
$version = $this->getDerniereVersion();
|
|
|
491 |
$table = sprintf(Config::get('tables.chorodepTpl'), $version);
|
|
|
492 |
return $table;
|
|
|
493 |
}
|
|
|
494 |
|
|
|
495 |
private function getDerniereVersion() {
|
|
|
496 |
$version = array_pop(explode(',', Config::get('versions')));
|
|
|
497 |
return $version;
|
|
|
498 |
}
|
11 |
jpm |
499 |
}
|
|
|
500 |
|
|
|
501 |
class ZgFrDepartements {
|
|
|
502 |
static private $departements =
|
|
|
503 |
array(
|
|
|
504 |
"01" => array("Ain", "01", 1),
|
|
|
505 |
"02" => array("Aisne", "02", 2),
|
|
|
506 |
"03" => array("Allier", "03", 3),
|
|
|
507 |
"04" => array("Alpes-de-Haute-Provence", "04", 4),
|
|
|
508 |
"05" => array("Hautes-Alpes", "05", 5),
|
|
|
509 |
"06" => array("Alpes-Maritimes", "06", 6),
|
|
|
510 |
"07" => array("Ardèche", "07", 7),
|
|
|
511 |
"08" => array("Ardennes", "08", 8),
|
|
|
512 |
"09" => array("Ariège", "09", 9),
|
|
|
513 |
"10" => array("Aube", "10", 10),
|
|
|
514 |
"11" => array("Aude", "11", 11),
|
|
|
515 |
"12" => array("Aveyron", "12", 12),
|
|
|
516 |
"13" => array("Bouches-du-Rhône", "13", 13),
|
|
|
517 |
"14" => array("Calvados", "14", 14),
|
|
|
518 |
"15" => array("Cantal", "15", 15),
|
|
|
519 |
"16" => array("Charente", "16", 16),
|
|
|
520 |
"17" => array("Charente-Maritime", "17", 17),
|
|
|
521 |
"18" => array("Cher", "18", 18),
|
|
|
522 |
"19" => array("Corrèze", "19", 19),
|
|
|
523 |
"20" => array("Corse", "20", 20),
|
|
|
524 |
"2A" => array("Haute-Corse", "2A", 20),
|
|
|
525 |
"2B" => array("Corse-du-Sud", "2B", 20),
|
|
|
526 |
"21" => array("Côte-d'Or", "21", 21),
|
|
|
527 |
"22" => array("Côtes-d'Armor", "22", 22),
|
|
|
528 |
"23" => array("Creuse", "23", 23),
|
|
|
529 |
"24" => array("Dordogne", "24", 24),
|
|
|
530 |
"25" => array("Doubs","25", 25),
|
|
|
531 |
"26" => array("Drôme", "26", 26),
|
|
|
532 |
"27" => array("Eure", "27", 27),
|
|
|
533 |
"28" => array("Eure-et-Loir", "28", 28),
|
|
|
534 |
"29" => array("Finistère", "29", 29),
|
|
|
535 |
"30" => array("Gard", "30", 30),
|
|
|
536 |
"31" => array("Haute-Garonne", "31", 31),
|
|
|
537 |
"32" => array("Gers", "32", 32),
|
|
|
538 |
"33" => array("Gironde", "33", 33),
|
|
|
539 |
"34" => array("Hérault", "34", 34),
|
|
|
540 |
"35" => array("Ille-et-Vilaine", "35", 35),
|
|
|
541 |
"36" => array("Indre", "36", 36),
|
|
|
542 |
"37" => array("Indre-et-Loire", "37", 37),
|
|
|
543 |
"38" => array("Isère", "38", 38),
|
|
|
544 |
"39" => array("Jura", "39", 39),
|
|
|
545 |
"40" => array("Landes", "40", 40),
|
|
|
546 |
"41" => array("Loir-et-Cher", "41", 41),
|
|
|
547 |
"42" => array("Loire", "42", 42),
|
|
|
548 |
"43" => array("Haute-Loire", "43", 43),
|
|
|
549 |
"44" => array("Loire-Atlantique", "44", 44),
|
|
|
550 |
"45" => array("Loiret", "45", 45),
|
|
|
551 |
"46" => array("Lot", "46", 46),
|
|
|
552 |
"47" => array("Lot-et-Garonne", "47", 47),
|
|
|
553 |
"48" => array("Lozére ", "48", 48),
|
|
|
554 |
"49" => array("Maine-et-Loire", "49", 49),
|
|
|
555 |
"50" => array("Manche", "50", 50),
|
|
|
556 |
"51" => array("Marne", "51", 51),
|
|
|
557 |
"52" => array("Haute-Marne", "52", 52),
|
|
|
558 |
"53" => array("Mayenne", "53", 53),
|
|
|
559 |
"54" => array("Meurthe-et-Moselle", "54", 54),
|
|
|
560 |
"55" => array("Meuse", "55", 55),
|
|
|
561 |
"56" => array("Morbihan", "56", 56),
|
|
|
562 |
"57" => array("Moselle", "57", 57),
|
|
|
563 |
"58" => array("Nièvre", "58", 58),
|
|
|
564 |
"59" => array("Nord", "59", 59),
|
|
|
565 |
"60" => array("Oise", "60", 60),
|
|
|
566 |
"61" => array("Orne", "61", 61),
|
|
|
567 |
"62" => array("Pas-de-Calais", "62", 62),
|
|
|
568 |
"63" => array("Puy-de-Dôme", "63", 63),
|
|
|
569 |
"64" => array("Pyrénées-Atlantiques", "64", 64),
|
|
|
570 |
"65" => array("Hautes-Pyrénées", "65", 65),
|
|
|
571 |
"66" => array("Pyrénées-Orientales", "66", 66),
|
|
|
572 |
"67" => array("Bas-Rhin", "67", 67),
|
|
|
573 |
"68" => array("Haut-Rhin", "68", 68),
|
|
|
574 |
"69" => array("Rhône", "69", 69),
|
|
|
575 |
"70" => array("Haute-Saône", "70", 70),
|
|
|
576 |
"71" => array("Saône-et-Loire", "71", 71),
|
|
|
577 |
"72" => array("Sarthe", "72", 72),
|
|
|
578 |
"73" => array("Savoie", "73", 73),
|
|
|
579 |
"74" => array("Haute-Savoie", "74", 74),
|
|
|
580 |
"75" => array("Paris", "75", 75),
|
|
|
581 |
"76" => array("Seine-Maritime", "76", 76),
|
|
|
582 |
"77" => array("Seine-et-Marne", "77", 77),
|
|
|
583 |
"78" => array("Yvelines", "78", 78),
|
|
|
584 |
"79" => array("Deux-Sèvres", "79", 79),
|
|
|
585 |
"80" => array("Somme", "80", 80),
|
|
|
586 |
"81" => array("Tarn", "81", 81),
|
|
|
587 |
"82" => array("Tarn-et-Garonne", "82", 82),
|
|
|
588 |
"83" => array("Var", "83", 83),
|
|
|
589 |
"84" => array("Vaucluse", "84", 84),
|
|
|
590 |
"85" => array("Vendée", "85", 85),
|
|
|
591 |
"86" => array("Vienne", "86", 86),
|
|
|
592 |
"87" => array("Haute-Vienne", "87", 87),
|
|
|
593 |
"88" => array("Vosges", "88", 88),
|
|
|
594 |
"89" => array("Yonne", "89", 89),
|
|
|
595 |
"90" => array("Territoire-de-Belfort", "90", 90),
|
|
|
596 |
"91" => array("Essonne", "91", 91),
|
|
|
597 |
"92" => array("Hauts-de-Seine", "92", 92),
|
|
|
598 |
"93" => array("Seine-Saint-Denis", "93", 93),
|
|
|
599 |
"94" => array("Val-de-Marne", "94", 94),
|
|
|
600 |
"95" => array("Val-d'Oise", "95", 95),
|
|
|
601 |
"96" => array("aaa", "96", 96),
|
|
|
602 |
"971" => array("Guadeloupe", "971", 971),
|
|
|
603 |
"972" => array("Martinique", "972", 972),
|
|
|
604 |
"973" => array("Guyane", "973", 973),
|
|
|
605 |
"974" => array("Réunion", "974", 974),
|
|
|
606 |
"99" => array("Etranger", "99", 99),
|
|
|
607 |
);
|
|
|
608 |
|
|
|
609 |
static public function get() {
|
|
|
610 |
return self::$departements;
|
|
|
611 |
}
|
|
|
612 |
|
|
|
613 |
static public function getNom($n) {
|
|
|
614 |
return self::$departements[$n][0];
|
|
|
615 |
}
|
|
|
616 |
|
|
|
617 |
static public function getIdChaine($n) {
|
|
|
618 |
return self::$departements[$n][1];
|
|
|
619 |
}
|
|
|
620 |
|
|
|
621 |
static public function getIdNumerique($n) {
|
|
|
622 |
return (int)self::$departements[$n][2];
|
|
|
623 |
}
|
|
|
624 |
|
|
|
625 |
static public function getIdEflore($n) {
|
|
|
626 |
return (int)self::$departements[$n][3];
|
|
|
627 |
}
|
|
|
628 |
}
|
|
|
629 |
?>
|