Created
April 2, 2015 20:26
-
-
Save SeanRavenhill/91a47f205cf701d8d5d4 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/cawezefalu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment