<?php
$dom = new DOMDocument();
$content = file_get_contents('http://www.walmart.com/ip/' . $_GET['id']);
@$dom->loadHTML($content);
$a = $dom->getElementsByTagName('meta');
for ($i=0; $i < $a->length; $i++) {
if ($a->item($i)->getAttribute('itemprop')){
$b = $a->item($i)->getAttribute('content');
$c = $a->item($i)->getAttribute('itemprop');
$json[$c] = $b;
}
}
echo str_replace('\\/', '/', json_encode($json));
?>
yoursite.com/?id=10311410 would echo {"image":"http://i.walmartimages.com/i/p/00/01/60/00/27/0001600027528_300X300.jpg","brand":"Cheerios","manufacturer":"General Mills","model":"27528","productID":"016000275287","availability":"http://schema.org/InStock","price":"3.68","priceCurrency":"USD","seller":"Walmart.com","name":"Cheerios Toasted Whole Grain Oat Cereal, 18 oz","dateModified":"2013-01-02","itemReviewed":"Cheerios Toasted Whole Grain Oat Cereal, 18 oz","datePublished":"2011-05-29"}