PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $lat ="34.0330"; $lon = "35.0045"; $key = "523df554f4e883874873853b897b6da0"; $url = "https://api.openweathermap.org/data/2.5/forecast?lat=$lat&lon=$lon&appid=$key"; $data = file_get_contents($url); $json = json_decode($data,true); $cb1 = $json['list']['0']['main']['temp']; $cb1_5 = $json['list']['0']['weather']['0']['description']; $cb2 = $json['list']["0"]['wind']['speed']; $cb3 = $json['list']['0']['dt']; $tempe = $cb1-273.15; echo($cb3);
Show:  
Copy Clear