PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $city='Macae'; $city1='Tallinn'; $city2='Oslo'; $city3='Dwaha'; $apiKey='b96c2bb94849e50f1501c12af7d5875c'; $url="https://api.openweathermap.org/data/2.5/forecast?q=$city_$city2&appid=$apiKey"; $json=file_get_contents($url); $data=json_decode($json,true); $maxSpeed=0; foreach($data['list'] as $v){ if($v['wind']['speed'] > $maxSpeed){ $maxSpeed=$v['wind']['speed']; $dt=date('d.m.Y ',$v['dt']); } } dd($dt); function dd(...$data){ return print_r($data);exit(); }
Show:  
Copy Clear