Hi
I'm trying to use preg_match to scrape the price of a product from a web site to do a price comparison but, for some reason that I can't work out, it is not returning the expected result.
Before you look at this, the URL is an "adult toys" site (not pornographic), so please don't look if that offends you!
OK, the URL is http://www.simplypleasure.com/products/novelties-340/chocolate-strawberry-body-pens-40g-each-3896.aspx (don't ask!)
My code is as follows:
$URL5 = "http://www.simplypleasure.com/products/novelties-340/chocolate-strawberry-body-pens-40g-each-3896.aspx";
$PAGE5 = file_get_contents($URL5);
if (preg_match('/<span class=.price.>£(\d+\.\d+)<\/span>/',$PAGE5,$matches))
$PRICE[5] = $matches[1];
else
$PRICE[5] = 'na';
I have tested my pattern match via this website http://www.functions-online.com/preg_match.html against the source code of the URL and it correctly returns $matches[1] as 6.00 (need to change £ to £ in that checker to get it to work).
I thought perhaps file_get_contents was returning spurious code but I wrote the results to a text file and it seems to be the correct source code.
Any ideas welcomed, thanks.