jeremydk a écrit:Bonjour,
j'ai mis ça comme lien http://www.lcsqa.org/indices-qualite-ai ... s/jour/xml et ça fonctionne chez moi sur Dunkerque.
(le chemin est lcsqa.org/indices-qualite-air/prevus/jour/xml ).
jeremydk a écrit:Bonjour,
j'ai mis ça comme lien http://www.lcsqa.org/indices-qualite-ai ... s/jour/xml et ça fonctionne chez moi sur Dunkerque.
(le chemin est lcsqa.org/indices-qualite-air/prevus/jour/xml ).
Bubblebond a écrit:Malheureusement , t'a solution se limite a Paris .
J'ai envoyé un message a LCSQA , peut être si on est plusieurs , ils vont corriger, surtout que ça doit pas être compliqué.
<?php
$f=fopen('air.csv','r');
$xml = new DomDocument('1.0', 'UTF-8');
$root = $xml->createElement('root');
$xml->appendChild($root);
if($f)
{
while($ligne=fgets($f))
{
$l=explode(';',$ligne);
$premiermot=$l[0];
if($premiermot<>"Date")
{
$entry = $xml->createElement('node');
$root->appendChild($entry);
$name = $entry->appendChild($xml->createElement("dateIndice"));
$name->appendChild($xml->createTextNode($l[0]));
$name = $entry->appendChild($xml->createElement("agglomerationCodeInsee"));
$name->appendChild($xml->createTextNode($l[1]));
$name = $entry->appendChild($xml->createElement("agglomeration"));
$name->appendChild($xml->createTextNode($l[2]));
$name = $entry->appendChild($xml->createElement("valeurIndice"));
$name->appendChild($xml->createTextNode($l[3]));
$name = $entry->appendChild($xml->createElement("SousIndiceO3"));
$name->appendChild($xml->createTextNode($l[4]));
$name = $entry->appendChild($xml->createElement("SousIndiceNO2"));
$name->appendChild($xml->createTextNode($l[5]));
$name = $entry->appendChild($xml->createElement("SousIndicePM10"));
$name->appendChild($xml->createTextNode($l[6]));
$name = $entry->appendChild($xml->createElement("SousIndiceSO2"));
$name->appendChild($xml->createTextNode($l[7]));
$name = $entry->appendChild($xml->createElement("sourceAASQA"));
$name->appendChild($xml->createTextNode($l[9]));
$name = $entry->appendChild($xml->createElement("Commentaires"));
$name->appendChild($xml->createTextNode($l[8]));
}
}
fclose($f);
}
$xml->formatOutput = true;
$xml->save('air.xml');
?>
Utilisateurs parcourant ce forum : Aucun utilisateur inscrit et 36 invité(s)