3v4l.org

run code in 300+ PHP versions simultaneously
<?php $context = [ 'mes' => [ 'attributes' => [ 't' => 'AddEvent', 'id' => 'test_id', ], 'ev' => [ 'attributes' => [ 'evt' => 'packet20130828ki3si0', 'src' => 'NVV', 'st' => 'test', 'start' => '12423511247', 'stop' => '12423991978', 'addrtype' => 'MB', 'clntID' => '+380957700418', 'lg' => '', 'bank' => '', 'lang' => '', 'prior' => '', 'brnm' => '', 'extref' => '', 'intref' => '', 'extaddrtype' => '', 'extaddrid' => '', 'recall' => '', ], 'attr' => [ [ 'attributes' => [ 'code' => '1', 'val' => '11', ], ], [ 'attributes' => [ 'code' => '2', 'val' => '12', ], ], ], 'hist' => [ [ 'attributes' => [ 'st' => '', 'ch' => '', 'lg' => '', 'con' => '', 'com' => '', 'addrtype' => '', 'addrid' => '', 'dt' => '', 'contactId' => '', ], ], ], ], ], ]; class Conv { protected $res; protected $context; public function __construct(array $context) { if (count($context) != 1) { throw new Exception('Must be only one root element', 500); } $this->context = $context; $this->init(key($this->context)); } public function conv() { return $this->a2x(current($this->context), $this->res)->asXML(); } protected function init($root) { $this->res = new SimpleXMLElement("<{$root}/>"); } protected function addAttribs(array $attribs, SimpleXMLElement $node) { if (count($attribs)) { foreach ($attribs as $attrKey => $attrVal) { $node->addAttribute($attrKey, $attrVal); } } return $node; } protected function tryToAddAttribs(array $inner, SimpleXMLElement $node) { if (isset($inner['attributes'])) { $this->addAttribs($inner['attributes'], $node); unset($inner['attributes']); } return $node; } protected function addEnum(array $items, SimpleXMLElement $node, $caption) {var_dump($items, $caption); if (count($items)) { foreach ($items as $item) { $subNode = $node->addChild($caption); $this->tryToAddAttribs($item, $subNode); unset($item['attributes']); } } } protected function a2x(array $inner, SimpleXMLElement $node) { $this->tryToAddAttribs($inner, $node); unset($inner['attributes']); if (count($inner)) { foreach ($inner as $key => $value) { if ($this->isEnumeration($value)) { foreach ($inner as $item) { $this->addEnum($item, $node, $key); } } else { $subNode = $node->addChild($key); $this->a2x($value, $subNode); } } } return $this->res; } protected function isEnumeration(array $items) { $keys = array_keys($items); foreach ($keys as $key) { if (!is_numeric($key)) { return false; } } return true; } } $a2x = new Conv($context); $a2x->conv(); //var_dump($a2x->conv()); //->asXML();
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> array(1) { ["attributes"]=> array(2) { ["code"]=> string(1) "1" ["val"]=> string(2) "11" } } [1]=> array(1) { ["attributes"]=> array(2) { ["code"]=> string(1) "2" ["val"]=> string(2) "12" } } } string(4) "attr" array(1) { [0]=> array(1) { ["attributes"]=> array(9) { ["st"]=> string(0) "" ["ch"]=> string(0) "" ["lg"]=> string(0) "" ["con"]=> string(0) "" ["com"]=> string(0) "" ["addrtype"]=> string(0) "" ["addrid"]=> string(0) "" ["dt"]=> string(0) "" ["contactId"]=> string(0) "" } } } string(4) "attr" array(2) { [0]=> array(1) { ["attributes"]=> array(2) { ["code"]=> string(1) "1" ["val"]=> string(2) "11" } } [1]=> array(1) { ["attributes"]=> array(2) { ["code"]=> string(1) "2" ["val"]=> string(2) "12" } } } string(4) "hist" array(1) { [0]=> array(1) { ["attributes"]=> array(9) { ["st"]=> string(0) "" ["ch"]=> string(0) "" ["lg"]=> string(0) "" ["con"]=> string(0) "" ["com"]=> string(0) "" ["addrtype"]=> string(0) "" ["addrid"]=> string(0) "" ["dt"]=> string(0) "" ["contactId"]=> string(0) "" } } } string(4) "hist"

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:
34.18 ms | 404 KiB | 8 Q