loadHTML(file_get_contents("http://www.gov.je/weather/Pages/Jersey-Forecast.aspx")); $divs = $dom->getElementsByTagName("div"); $day = 0; $valid = array(); $temp = array(); $misc = array(); foreach ($divs as $div) { if ($day > 2) { break; } foreach ($div->attributes as $attr) { if ($attr->nodeValue == "forecastValid") { array_push($valid, $div->nodeValue); $day++; } if ($attr->nodeValue == "forecastText" || $attr->nodeValue == "forecastText last") { array_push($misc, $div->nodeValue); } if ($attr->nodeValue == "main") { $spans = $div->getElementsByTagName("span"); foreach ($spans as $span) { foreach ($span->attributes as $sattr) { if ($sattr->nodeValue == "temp" || $sattr->nodeValue == "currentc") { array_push($temp, $span->nodeValue); } } } } } } // Replace newlines with spaces, and strip multiple spaces for ($i = 0; $i < count($misc); $i++) { $misc[$i] = preg_replace("/[\r\n]+/", " ", $misc[$i]); $misc[$i] = preg_replace("/\s+/", " ", $misc[$i]); } for ($i = 0; $i < count($temp); $i++) { // $temp[$i] = str_replace("°", "°", $temp[$i]); } echo "
Forecasts | Graphs
\n\n"; echo "$valid[0]
\n";
echo "Max: $temp[0], Min: $temp[1], Current: $temp[2]
\n";
echo "Summary: $misc[0]
\n";
echo "Visibility: $misc[1]
\n";
echo "Wind: $misc[2]
\n";
echo "Sea state: $misc[3]
$valid[1]
\n";
echo "Max: $temp[3], Min: $temp[4]
\n";
echo "Summary: $misc[4]
\n";
echo "Wind: $misc[5]