Utilisation Json
Résolu/Fermé
thibault8904
Messages postés
9
Date d'inscription
mardi 24 mars 2015
Statut
Membre
Dernière intervention
27 mars 2015
-
24 mars 2015 à 23:25
thibault8904 Messages postés 9 Date d'inscription mardi 24 mars 2015 Statut Membre Dernière intervention 27 mars 2015 - 25 mars 2015 à 15:51
thibault8904 Messages postés 9 Date d'inscription mardi 24 mars 2015 Statut Membre Dernière intervention 27 mars 2015 - 25 mars 2015 à 15:51
A voir également:
- Utilisation Json
- Notice d'utilisation - Guide
- Utilisation chromecast - Guide
- Votre compte a été désactivé pour violation de nos conditions d’utilisation - Guide
- Droit utilisation musique 30 secondes ✓ - Forum MacOS
- Droit d'auteur MUSIC??? ✓ - Forum Réseaux sociaux
4 réponses
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
25 mars 2015 à 15:05
25 mars 2015 à 15:05
Par exemple :
NB : Pour mon test .. j'ai mis ça dans mon fichier json :
<?php $file = "source.json"; if(file_exists($file)){ $json = file_get_contents($file); $parsed_json = json_decode($json, true); $arr_results = $parsed_json['results']; foreach($arr_results as $collection=>$k){ echo "<pre><b>**************<br>".$collection."</b><br>**************<br>"; foreach($k as $x=>$v){ $titre= isset($v['Property1'])?$v['Property1']:NULL; $sport= isset($v['Property2'])?$v['Property2']:NULL; if($titre){ echo "<br><u><b>titre</b></u>:"; print_r($titre); } if($sport){ foreach($sport as $S){ $text = isset($S['Texte'])?$S['Texte']:''; $href = isset($S['Href'])?$S['Href']:''; echo "<br> Sport :".$text." --- ".$href; } } } echo "</pre>"; } }else{ echo " <br> No File ! "; }
NB : Pour mon test .. j'ai mis ça dans mon fichier json :
{
"Name": "sport",
"Compter": 14,
"Frequence": "Toutes les 15 minutes",
"Version": 4,
"Newdata": true,
"Lastrunstatus": "succes",
"Lastsuccess": "Tue 24 mars 2015 21:57:57 GMT + 0000 (UTC)",
"Thisversionstatus": "succes",
"Nextrun": "Tue 24 mars 2015 22:12:57 GMT + 0000 (UTC)",
"Thisversionrun": "Tue 24 mars 2015 21:57:57 GMT + 0000 (UTC)",
"results": {
"Collection1": [
{
"Property1": "Liste des sports"
}
],
"Collection2": [
{
"Property2": [{
"Texte": "Accrobranche",
"Href": "http://www.exemple.fr"
}]
},
{
"Property2": [{
"Texte": "sportif aerobie",
"Href": "http://www.exemple.fr"
}]
},
{
"Property2": [{
"Texte": "Aeromodelisme",
"Href": "http://www.exemple.fr"
}]
}
]
}
}
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
25 mars 2015 à 00:26
25 mars 2015 à 00:26
Bonjour,
Visiblement tu as oublié un niveau...
tes collections sont dans : "résultats"
A la limite... fais des print_r de tes variables pour voir ce qu'elles contiennent...
Commence par :
Visiblement tu as oublié un niveau...
tes collections sont dans : "résultats"
A la limite... fais des print_r de tes variables pour voir ce qu'elles contiennent...
Commence par :
print_r($parsed_json);
thibault8904
Messages postés
9
Date d'inscription
mardi 24 mars 2015
Statut
Membre
Dernière intervention
27 mars 2015
25 mars 2015 à 00:48
25 mars 2015 à 00:48
Merci de ta réponse,
rien n'y fait, j'ai ajouté résultats mais idem.
print_r($parsed_json); // me renvoi mon fichier Json
print_r($titre); // me renvoi rien
print_r($sport1); // me renvoi rien
print_r($sport2); //me renvoi rien
rien n'y fait, j'ai ajouté résultats mais idem.
print_r($parsed_json); // me renvoi mon fichier Json
print_r($titre); // me renvoi rien
print_r($sport1); // me renvoi rien
print_r($sport2); //me renvoi rien
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
>
thibault8904
Messages postés
9
Date d'inscription
mardi 24 mars 2015
Statut
Membre
Dernière intervention
27 mars 2015
Modifié par jordane45 le 25/03/2015 à 01:26
Modifié par jordane45 le 25/03/2015 à 01:26
print_r($parsed_json); // me renvoi mon fichier Json
Pas tout à fait de la même manière.. mais sous forme d'array...
peux tu nous coller le résultat de la commande suivante:
<?php $json = file_get_contents("urldemonfichierjson"); $parsed_json = json_decode($json, true); echo "<pre>"; print_r($parsed_json); echo "</pre>.";
thibault8904
Messages postés
9
Date d'inscription
mardi 24 mars 2015
Statut
Membre
Dernière intervention
27 mars 2015
Modifié par thibault8904 le 25/03/2015 à 01:35
Modifié par thibault8904 le 25/03/2015 à 01:35
ah exact, Voila le résultat:
Array
(
[name] => sport
[count] => 14
[frequency] => Every 15 mins
[version] => 13
[newdata] => 1
[lastrunstatus] => success
[lastsuccess] => Wed Mar 25 2015 00:18:36 GMT+0000 (UTC)
[thisversionstatus] => success
[nextrun] => Wed Mar 25 2015 00:33:36 GMT+0000 (UTC)
[thisversionrun] => Wed Mar 25 2015 00:18:36 GMT+0000 (UTC)
[results] => Array
(
[collection1] => Array
(
[0] => Array
(
[property1] => Liste des sports
)
)
[collection2] => Array
(
[0] => Array
(
[property2] => Array
(
[text] => Accrobranche
[href] => http://www.exemple.fr
)
)
[1] => Array
(
[property2] => Array
(
[text] => Aerobic sportive
[href] => http://www.exemple.fr
)
)
[2] => Array
(
[property2] => Array
(
[text] => Aéromodélisme
[href] => http://www.exemple.fr
)
)
[3] => Array
(
[property2] => Array
(
[text] => Aérostation
[href] => http://www.exemple.fr
)
)
[4] => Array
(
[property2] => Array
(
[text] => Agility
[href] => http://www.exemple.fr
)
)
[5] => Array
(
[property2] => Array
(
[text] => Aikido
[href] => http://www.exemple.fr
)
)
[6] => Array
(
[property2] => Array
(
[text] => Alpinisme
[href] => http://www.exemple.fr
)
)
[7] => Array
(
[property2] => Array
(
[text] => Apnée
[href] => http://www.exemple.fr
)
)
[8] => Array
(
[property2] => Array
(
[text] => Aqua gym
[href] => http://www.exemple.fr
)
)
[9] => Array
(
[property2] => Array
(
[text] => Arts martiaux artistiques
[href] => http://www.exemple.fr
)
)
[10] => Array
(
[property2] => Array
(
[text] => Athlétisme
[href] => http://www.exemple.fr
)
)
[11] => Array
(
[property2] => Array
(
[text] => Aviation
[href] => http://www.exemple.fr
)
)
[12] => Array
(
[property2] => Array
(
[text] => Aviron
[href] => http://www.exemple.fr
)
)
)
)
)
.
thibault8904
Messages postés
9
Date d'inscription
mardi 24 mars 2015
Statut
Membre
Dernière intervention
27 mars 2015
25 mars 2015 à 14:08
25 mars 2015 à 14:08
Up ?
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
25 mars 2015 à 14:25
25 mars 2015 à 14:25
Ah désolé.
Je pensais que tu avais compris comment s'en servir...
Donc... $parsed_json est un ARRAY (comme tu as pu le voir...)
Tes "conditions" se trouvent dans le sous-tableau results ...
donc :
Je pensais que tu avais compris comment s'en servir...
Donc... $parsed_json est un ARRAY (comme tu as pu le voir...)
Tes "conditions" se trouvent dans le sous-tableau results ...
donc :
$json = file_get_contents("urldemonfichierjson"); $parsed_json = json_decode($json, true); $arr_results = $parsed_json['results']; $collection1= $arr_results['collection1']; //etc....
jordane45
Messages postés
38358
Date d'inscription
mercredi 22 octobre 2003
Statut
Modérateur
Dernière intervention
28 décembre 2024
4 719
25 mars 2015 à 15:48
25 mars 2015 à 15:48
mais tu peux enlever le if(file_exists...) si ton fichier n'est pas sur ton serveur mais via une URL ...
$json = file_get_contents('monurl'); $parsed_json = json_decode($json, true); $arr_results = $parsed_json['results']; foreach($arr_results as $collection=>$k){ echo "<pre><b>**************<br>".$collection."</b><br>**************<br>"; foreach($k as $x=>$v){ $titre= isset($v['Property1'])?$v['Property1']:NULL; $sport= isset($v['Property2'])?$v['Property2']:NULL; if($titre){ echo "<br><u><b>titre</b></u>:"; print_r($titre); } if($sport){ foreach($sport as $S){ $text = isset($S['Texte'])?$S['Texte']:''; $href = isset($S['Href'])?$S['Href']:''; echo "<br> Sport :".$text." --- ".$href; } } } echo "</pre>"; }
thibault8904
Messages postés
9
Date d'inscription
mardi 24 mars 2015
Statut
Membre
Dernière intervention
27 mars 2015
25 mars 2015 à 15:51
25 mars 2015 à 15:51
Ok c'est tout bon, merci de ta patience x)
25 mars 2015 à 15:16
Modifié par jordane45 le 25/03/2015 à 15:28
Qui peut donc s'écrire en une seule fois :
25 mars 2015 à 15:34
25 mars 2015 à 15:46
dans ton cas ..ça serait
25 mars 2015 à 15:48