par
flexi2202 » 12 juil. 2021, 08:36
bonjour @rthur
merci pour l aide
juste
je viens de corriger
Code : Tout sélectionner
<?php
//on prends l api et on extrait les données
$url = "https://api.openweathermap.org/data/2.5/weather?q=$ville&lang=fr&units=metric&appid=e30eac7b1e60d534d109bfad9a";
$raw = file_get_contents($url);
$json = json_decode($raw);
foreach ($json->daily as $daily) {
}
$name=$json->name;
$lon=$json->coord->lon;
$lon=$json->coord->lat;
var_dump($json->daily) ;
?>
et le résultat est le suivant
Warning: file_get_contents(
https://api.openweathermap.org/data/2.5 ... ad513a4d9a): failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2053
Notice: Trying to get property 'daily' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2055
Warning: Invalid argument supplied for foreach() in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2055
Notice: Trying to get property 'name' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2057
Notice: Trying to get property 'coord' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2058
Notice: Trying to get property 'lon' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2058
Notice: Trying to get property 'coord' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2059
Notice: Trying to get property 'lat' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2059
Notice: Trying to get property 'daily' of non-object in /storage/ssd4/105/15003105/public_html/peche2/dailyonecall.php on line 2060
NULL