--TEST-- Bug #69846 Segmenation fault (access violation) when iterating over DOMNodeList --SKIPIF-- --FILE-- Value A Value B Value C '; $tmpDomDocument->loadXML($xml); $dataNodes = $tmpDomDocument->firstChild->childNodes->item(0)->childNodes; var_dump($dataNodes->length); $datasetDom = new DOMDocument(); foreach ($dataNodes AS $node) { $node = $datasetDom->importNode($node, true); var_dump($node); } ?> --EXPECTF-- int(3) object(DOMText)#%d (21) { ["wholeText"]=> string(3) " " ["data"]=> string(3) " " ["length"]=> int(3) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(5) "#text" ["nodeValue"]=> string(3) " " ["nodeType"]=> int(3) ["parentNode"]=> NULL ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> NULL ["lastChild"]=> NULL ["previousSibling"]=> NULL ["nextSibling"]=> NULL ["attributes"]=> NULL ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> NULL ["baseURI"]=> NULL ["textContent"]=> string(3) " " } object(DOMElement)#%d (23) { ["tagName"]=> string(5) "form1" ["schemaTypeInfo"]=> NULL ["firstElementChild"]=> string(22) "(object value omitted)" ["lastElementChild"]=> string(22) "(object value omitted)" ["childElementCount"]=> int(3) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(5) "form1" ["nodeValue"]=> string(39) " Value A Value B Value C " ["nodeType"]=> int(1) ["parentNode"]=> NULL ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> string(22) "(object value omitted)" ["lastChild"]=> string(22) "(object value omitted)" ["previousSibling"]=> NULL ["nextSibling"]=> NULL ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(5) "form1" ["baseURI"]=> NULL ["textContent"]=> string(39) " Value A Value B Value C " } object(DOMText)#%d (21) { ["wholeText"]=> string(1) " " ["data"]=> string(1) " " ["length"]=> int(1) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(5) "#text" ["nodeValue"]=> string(1) " " ["nodeType"]=> int(3) ["parentNode"]=> NULL ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> NULL ["lastChild"]=> NULL ["previousSibling"]=> NULL ["nextSibling"]=> NULL ["attributes"]=> NULL ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> NULL ["baseURI"]=> NULL ["textContent"]=> string(1) " " }