PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $apiKey = '523df554f4e883874873853b897b6da0'; $city = 'Tallinn'; $url = "https://api.openweathermap.org/data/2.5/forecast?q=$city&appid=$apiKey"; $jsonData = file_get_contents($url); $arr = json_decode($jsonData, TRUE); foreach ($arr['list'] as $v) { $dt = $v['dt']; $temperatureK = $v['main']['temp']; $temperatureC = $temperatureK - 273.15; $temperatureC = round($temperatureC, 2); echo date('d.m.Y h:i', $dt) . " - Температура: " . $temperatureC . "°C\n"; } print_r($arr); ?>
Show:  
Copy Clear