3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json_string = file_get_contents("http://api.wunderground.com/api/a4ae759739c92427/forecast/q/UK/Newcastle.json"); $parsed_json = json_decode($json_string); for($i = 0; $i <= 1; $i++) { $day = $parsed_json->{'forecast'}->{'txt_forecast'}->{'forecastday'}->{i}; return $day->{'title'} . "<br>" . $day->{'fcttext_metric'} . "<br><br>"; }

preferences:
68.49 ms | 402 KiB | 5 Q