ownerDocument); $xpath->registerNamespace('az', 'http://webservices.amazon.com/AWSECommerceService/2005-10-05'); foreach (array('ASIN', 'Title') as $el) { $text = $xpath->query("./az:$el/text()", $dom)->item(0); if($text instanceof DOMText) { $this->$el = (string)$text->data; } } } }