Skip to content

Instantly share code, notes, and snippets.

View SeanRavenhill's full-sized avatar

Sean Ravenhill SeanRavenhill

  • Abergavenny, Wales
  • 16:21 (UTC +01:00)
View GitHub Profile
<?php
$contents=file_get_contents("http://www.weather-forecast.com/locations/Cape-Town/forecasts/latest");
preg_match('/3 Day Weather Forecast Summary:<\/b><span class="read-more-small"><span class="read-more-content"> <span class="phrase"> (.*?) <\/span></\span></s', $contents, $matches);
print_r ($matches);
?>