3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = '<RESPONSE><FIELDS><FIELD KEY="MSG_VERSION">333</FIELD><FIELD KEY="CUST_NBR">222</FIELD><FIELD KEY="MERCH_NBR">111</FIELD></FIELDS></RESPONSE>'; $doc = new DOMDocument; $doc->loadXml($xml); $xpath = new DOMXPath($doc); $query = '/RESPONSE/FIELDS/FIELD'; $entries = $xpath->evaluate($query, $doc); var_dump($entries); foreach($entries as $item) { var_dump($item); }
Output for git.master, git.master_jit, rfc.property-hooks
object(DOMNodeList)#6 (1) { ["length"]=> int(3) } object(DOMElement)#3 (23) { ["schemaTypeInfo"]=> NULL ["tagName"]=> string(5) "FIELD" ["firstElementChild"]=> NULL ["lastElementChild"]=> NULL ["childElementCount"]=> int(0) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> string(22) "(object value omitted)" ["nodeName"]=> string(5) "FIELD" ["nodeValue"]=> string(3) "333" ["nodeType"]=> int(1) ["parentNode"]=> string(22) "(object value omitted)" ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> string(22) "(object value omitted)" ["lastChild"]=> string(22) "(object value omitted)" ["previousSibling"]=> NULL ["nextSibling"]=> string(22) "(object value omitted)" ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(5) "FIELD" ["baseURI"]=> string(1) "/" ["textContent"]=> string(3) "333" } object(DOMElement)#4 (23) { ["schemaTypeInfo"]=> NULL ["tagName"]=> string(5) "FIELD" ["firstElementChild"]=> NULL ["lastElementChild"]=> NULL ["childElementCount"]=> int(0) ["previousElementSibling"]=> string(22) "(object value omitted)" ["nextElementSibling"]=> string(22) "(object value omitted)" ["nodeName"]=> string(5) "FIELD" ["nodeValue"]=> string(3) "222" ["nodeType"]=> int(1) ["parentNode"]=> string(22) "(object value omitted)" ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> string(22) "(object value omitted)" ["lastChild"]=> string(22) "(object value omitted)" ["previousSibling"]=> string(22) "(object value omitted)" ["nextSibling"]=> string(22) "(object value omitted)" ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(5) "FIELD" ["baseURI"]=> string(1) "/" ["textContent"]=> string(3) "222" } object(DOMElement)#5 (23) { ["schemaTypeInfo"]=> NULL ["tagName"]=> string(5) "FIELD" ["firstElementChild"]=> NULL ["lastElementChild"]=> NULL ["childElementCount"]=> int(0) ["previousElementSibling"]=> string(22) "(object value omitted)" ["nextElementSibling"]=> NULL ["nodeName"]=> string(5) "FIELD" ["nodeValue"]=> string(3) "111" ["nodeType"]=> int(1) ["parentNode"]=> string(22) "(object value omitted)" ["childNodes"]=> string(22) "(object value omitted)" ["firstChild"]=> string(22) "(object value omitted)" ["lastChild"]=> string(22) "(object value omitted)" ["previousSibling"]=> string(22) "(object value omitted)" ["nextSibling"]=> NULL ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(5) "FIELD" ["baseURI"]=> string(1) "/" ["textContent"]=> string(3) "111" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.46 ms | 409 KiB | 8 Q