<?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();
You have javascript disabled. You will not be able to edit any code.