Jump to content

Data Scraping with preg_match_all()


shaunie

Recommended Posts

Hi,

 

I have the written the following code which scrapes price info from a website:

 

$url = 'http://www.mydomain.com';
$html = file_get_contents($url);
$pattern = '/<span class="price">(.*?)<\/span>/';
preg_match_all($pattern, $html, $matches);
print_r($matches);

 

It works well however I need to add in the delivery cost to each array element with a different pattern:

/<span class="delivery">(.*?)<\/span>/';

 

Any idea how i can do this so each array element has both the price and delivery costs in a two dimensional array?

 

Thanks for your advice

Link to comment
https://forums.phpfreaks.com/topic/227739-data-scraping-with-preg_match_all/
Share on other sites

Not tested:

$url = 'http://www.mydomain.com';
$html = file_get_contents($url);

preg_match_all('/<span class="price">(.*?)<\/span>/', $html, $prices);
preg_match_all('/<span class="delivery">(.*?)<\/span>/', $html, $deliveries);

foreach($prices[1] as $key => $price) {
    $result[$key]['price'] = $price;
    if(isset($deliveries[1][$key])) {
        $result[$key]['delivery'] = $deliveries[1][$key];
    }
}

 

Or if you're sure the arrays are the same length:

foreach($prices[1] as $key => $price) {
    $result[] = array('price' => $price, 'delivery' => $deliveries[1][$key]);
}

Hi,

 

Thanks for your reply, it works great, the problem I have now found is that some of the prices on this site have free delivery and in this case the html is different: <span class="free_delivery">

 

Is there a way I can match up the elements in the array correctly in this scenario?

Hi,

 

Sorry, what I meant was how can I make sure that the array elements match up. Currently the product price is matched with the delivery price, but if the delivery is free (because the HTML is different), the rest don't match up because the delivery array is smaller...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.