3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dom = new \DOMDocument(); $root = $dom->createElementNS('http://example.com', 'root'); $dom->appendChild($root); $a1 = $dom->createElementNS('http://example.com', 'a'); $a1->appendChild($dom->createElementNS('http://example.com', 'b')); $root->appendChild($a1); $a2 = $dom->createElementNS('http://example.com', 'a'); $a2->appendChild($dom->createElementNS('http://example.com', 'b')); $root->appendChild($a2); echo $dom->saveXML();
Output for git.master_jit, git.master, rfc.property-hooks
<?xml version="1.0"?> <root xmlns="http://example.com"><a><b/></a><a><b/></a></root>

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:
66.29 ms | 405 KiB | 5 Q