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
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]);
}

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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