Jump to content

tejama

Members
  • Posts

    20
  • Joined

  • Last visited

    Never

Contact Methods

Profile Information

  • Gender
    Not Telling
  • Location
    Canada

tejama's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Awesome! I wasn't 100% sure how to handle whitespace in reg exs, so I figured that was part of the issue. Thanks a bunch for the help!
  2. I'm trying to write code to scrape the content of a weather page to get today's forecast using preg_match_all. Below is the code I'm using that is generating the error: function get_weather() { $html = file_get_contents("http://weatheroffice.gc.ca/city/pages/nl-24_metric_e.html"); preg_match_all("/<dt>Today<\/dt><dd>(.*)<\/dd>/sm", $html, $forecast, PREG_SET_ORDER); echo $forecast[0][0]; } The piece of html content I'm trying to scrape is as follows: <dt>Today</dt> <dd>Freezing rain mixed with ice pellets changing to rain and ending near noon then cloudy. Wind becoming northeast 30 km/h gusting to 50 this morning then southwest 50 gusting to 70 near noon. High plus 4.</dd> Basically the error I'm getting is that preg_match_all is returning no results. Can anyone point out where I might be going wrong in my regex? Thanks in advance
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.