ownerDocument); $xpath->registerNamespace('az', 'http://webservices.amazon.com/AWSECommerceService/2005-10-05'); foreach (array('Rating', 'HelpfulVotes', 'CustomerId', 'TotalVotes', 'Date', 'Summary', 'Content') as $el) { $result = $xpath->query("./az:$el/text()", $dom); if ($result->length == 1) { $this->$el = (string) $result->item(0)->data; } } } }