3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test($xml) { $dom = new DomDocument(); $dom->loadXML($xml); $node = $dom->documentElement; $nodes = array(); foreach($node->childNodes as $n) if($n->nodeType==XML_ELEMENT_NODE) $nodes[]=$n; foreach($nodes as $n) $n->parentNode->removeChild($n); foreach($nodes as $n) $node->appendChild($n); echo $dom->saveXML(); } test('<?xml version="1.0" encoding="UTF-8"?><test xmlns:any="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"><item /><item xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"/></test>'); test('<?xml version="1.0" encoding="UTF-8"?><test xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"><item /><item xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"/></test>');
Output for git.master, git.master_jit, rfc.property-hooks
<?xml version="1.0" encoding="UTF-8"?> <test xmlns:any="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"><item/><any:item/></test> <?xml version="1.0" encoding="UTF-8"?> <test xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"><item/><item/></test>

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:
39.69 ms | 401 KiB | 8 Q