Code:
<?php
$file_string = file_get_contents('http://delhi.tradus.com/puma-axis-ii-ind-silver-lime-green-sports-shoes/p/FTWN4FH29KD29I2T?tag=19622&tsrc=TagListing');
preg_match('#<span itemprop="priceCurrency" class="rupee">(.*)<\/span><span itemprop="(.*?)">(.*)<\/span>#', $file_string, $price);
echo '<pre>';
print_r($price);
echo $price_out = $price[0];
?>
Comment