3v4l.org

run code in 300+ PHP versions simultaneously
<?php $doc = new DOMDocument('1.0', 'utf-8'); $rss = $doc->appendChild($doc->createElement('rss')); $channel = $rss->appendChild($doc->createElement('channel')); $channel->setAttribute('xmlns:g', 'http://foo.com/foo/bar/baz'); $item = $channel->appendChild($doc->createElement('item')); $foo = $item->appendChild($doc->createElement('g:foo')); $foo->appendChild($doc->createTextNode('bar')); echo $doc->saveXML() . "\n"; $xpath = new DOMXPath($doc); var_dump($xpath->query('/rss/channel')->item(0));
Output for 8.3.0 - 8.3.6
<?xml version="1.0" encoding="utf-8"?> <rss><channel xmlns:g="http://foo.com/foo/bar/baz"><item><g:foo>bar</g:foo></item></channel></rss> object(DOMElement)#3 (27) { ["schemaTypeInfo"]=> NULL ["tagName"]=> string(7) "channel" ["className"]=> string(0) "" ["id"]=> string(0) "" ["firstElementChild"]=> string(22) "(object value omitted)" ["lastElementChild"]=> string(22) "(object value omitted)" ["childElementCount"]=> int(1) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(7) "channel" ["nodeValue"]=> string(3) "bar" ["nodeType"]=> int(1) ["parentNode"]=> string(22) "(object value omitted)" ["parentElement"]=> 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"]=> NULL ["attributes"]=> string(22) "(object value omitted)" ["isConnected"]=> bool(true) ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(7) "channel" ["baseURI"]=> NULL ["textContent"]=> string(3) "bar" }
Output for 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
<?xml version="1.0" encoding="utf-8"?> <rss><channel xmlns:g="http://foo.com/foo/bar/baz"><item><g:foo>bar</g:foo></item></channel></rss> object(DOMElement)#3 (23) { ["schemaTypeInfo"]=> NULL ["tagName"]=> string(7) "channel" ["firstElementChild"]=> string(22) "(object value omitted)" ["lastElementChild"]=> string(22) "(object value omitted)" ["childElementCount"]=> int(1) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(7) "channel" ["nodeValue"]=> string(3) "bar" ["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"]=> NULL ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(7) "channel" ["baseURI"]=> NULL ["textContent"]=> string(3) "bar" }
Output for 8.0.0 - 8.0.30
<?xml version="1.0" encoding="utf-8"?> <rss><channel xmlns:g="http://foo.com/foo/bar/baz"><item><g:foo>bar</g:foo></item></channel></rss> object(DOMElement)#3 (23) { ["tagName"]=> string(7) "channel" ["schemaTypeInfo"]=> NULL ["firstElementChild"]=> string(22) "(object value omitted)" ["lastElementChild"]=> string(22) "(object value omitted)" ["childElementCount"]=> int(1) ["previousElementSibling"]=> NULL ["nextElementSibling"]=> NULL ["nodeName"]=> string(7) "channel" ["nodeValue"]=> string(3) "bar" ["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"]=> NULL ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(7) "channel" ["baseURI"]=> NULL ["textContent"]=> string(3) "bar" }
Output for 7.0.16 - 7.0.33, 7.1.2 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
<?xml version="1.0" encoding="utf-8"?> <rss><channel xmlns:g="http://foo.com/foo/bar/baz"><item><g:foo>bar</g:foo></item></channel></rss> object(DOMElement)#3 (18) { ["tagName"]=> string(7) "channel" ["schemaTypeInfo"]=> NULL ["nodeName"]=> string(7) "channel" ["nodeValue"]=> string(3) "bar" ["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"]=> NULL ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(7) "channel" ["baseURI"]=> NULL ["textContent"]=> string(3) "bar" }
Output for 5.3.11 - 5.3.29, 5.4.1 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.15, 7.1.0 - 7.1.1
<?xml version="1.0" encoding="utf-8"?> <rss><channel xmlns:g="http://foo.com/foo/bar/baz"><item><g:foo>bar</g:foo></item></channel></rss> object(DOMElement)#3 (17) { ["tagName"]=> string(7) "channel" ["schemaTypeInfo"]=> NULL ["nodeName"]=> string(7) "channel" ["nodeValue"]=> string(3) "bar" ["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 ["attributes"]=> string(22) "(object value omitted)" ["ownerDocument"]=> string(22) "(object value omitted)" ["namespaceURI"]=> NULL ["prefix"]=> string(0) "" ["localName"]=> string(7) "channel" ["baseURI"]=> NULL ["textContent"]=> string(3) "bar" }
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.10, 5.4.0
<?xml version="1.0" encoding="utf-8"?> <rss><channel xmlns:g="http://foo.com/foo/bar/baz"><item><g:foo>bar</g:foo></item></channel></rss> object(DOMElement)#3 (0) { }
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/SOFmR on line 13
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/SOFmR on line 13
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/SOFmR on line 13
Process exited with code 255.

preferences:
298.68 ms | 401 KiB | 460 Q