3v4l.org

run code in 300+ PHP versions simultaneously
<?php function array_to_xml(array $data) { $document = new DOMDocument(); array_to_xml_aux($data, $document); $document->formatOutput = true; return $document; } function array_to_xml_aux(array $data, DOMNode $parent, $name = null) { foreach ($data as $key => $value) { if ($key[0] == '@') { $parent->setAttribute( substr($key, 1), $value ); return; } if (is_numeric($key)) { $key = $name; } if (is_array($value)) { $subnode = new DOMElement($key); $parent->appendChild($subnode); array_to_xml_aux($value, $subnode, $key); } else { $xml_data->appendChild(new DOMElement($key, $value)); } } } $document = array_to_xml( array( 'Products' => array( 'Product' => array('@name' => 'TR-501'), 'Descricao' => array('@text' => '55.180.198 / 46789771'), 'opcionais' => array( 'opcional' => array( 'oi' ) ), ) ) ); echo $document->saveXML();
Output for git.master_jit, git.master
Warning: Trying to access array offset on value of type int in /in/89Igo on line 13 Warning: Undefined variable $xml_data in /in/89Igo on line 30 Fatal error: Uncaught Error: Call to a member function appendChild() on null in /in/89Igo:30 Stack trace: #0 /in/89Igo(28): array_to_xml_aux(Array, Object(DOMElement), 'opcional') #1 /in/89Igo(28): array_to_xml_aux(Array, Object(DOMElement), 'opcionais') #2 /in/89Igo(28): array_to_xml_aux(Array, Object(DOMElement), 'Products') #3 /in/89Igo(5): array_to_xml_aux(Array, Object(DOMDocument)) #4 /in/89Igo(35): array_to_xml(Array) #5 {main} thrown in /in/89Igo on line 30
Process exited with code 255.
Output for rfc.property-hooks
Warning: Trying to access array offset on int in /in/89Igo on line 13 Warning: Undefined variable $xml_data in /in/89Igo on line 30 Fatal error: Uncaught Error: Call to a member function appendChild() on null in /in/89Igo:30 Stack trace: #0 /in/89Igo(28): array_to_xml_aux(Array, Object(DOMElement), 'opcional') #1 /in/89Igo(28): array_to_xml_aux(Array, Object(DOMElement), 'opcionais') #2 /in/89Igo(28): array_to_xml_aux(Array, Object(DOMElement), 'Products') #3 /in/89Igo(5): array_to_xml_aux(Array, Object(DOMDocument)) #4 /in/89Igo(35): array_to_xml(Array) #5 {main} thrown in /in/89Igo on line 30
Process exited with code 255.

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