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 5.4.0 - 5.4.45, 5.5.0 - 5.5.36, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.17 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
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"
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/bvmUA on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/bvmUA on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/bvmUA on line 3
Process exited with code 255.

preferences:
261.06 ms | 401 KiB | 374 Q