3v4l.org

run code in 300+ PHP versions simultaneously
<?php class XmlArrayAccessIterator implements ArrayAccess, IteratorAggregate { private $xml; public function __construct($filePath, $isUrl = true) { $this->isUrl = $isUrl; $this->xml = new SimpleXmlIterator($filePath, 0, $isUrl); } public function offsetExists($offset) { return !is_null($this->xml->$offset); } public function offsetGet($offset) { if ($this->xml->getName() == $offset) { return $this; } if (is_int($offset)) { $tag = $this->xml->getName(); $target = $this->xml->xpath('../' . $tag); $target = $target[$offset]; return new self($target->asXML(), false); } return new self($this->xml->$offset->asXML(), false); } public function __toString() { return (string) $this->xml; } public function offsetSet($offset, $value) { throw new RuntimeException('This is readonly. writing to "' . (string) $offset . '" with value "' . (string) $value . '" not possible'); } public function offsetUnset($offset) { throw new RuntimeException('This is readonly. Unsetting "' . (string) $offset . '" not possible'); } public function getIterator() { return $this->xml; } } $str = '<?xml version="1.0"?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don\'t forget me this weekend!</body> <recursive> <val>2</val> <val>4</val> </recursive> </note>'; $xml = new XmlArrayAccessIterator($str, false); //echo $xml['note']['to']; echo $xml['note']['recursive']['val'][1];
Output for 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Deprecated: Return type of XmlArrayAccessIterator::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 13 Deprecated: Return type of XmlArrayAccessIterator::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 18 Deprecated: Return type of XmlArrayAccessIterator::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 39 Deprecated: Return type of XmlArrayAccessIterator::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 44 Deprecated: Return type of XmlArrayAccessIterator::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 49 Deprecated: Creation of dynamic property XmlArrayAccessIterator::$isUrl is deprecated in /in/cDq4p on line 9 Deprecated: Creation of dynamic property XmlArrayAccessIterator::$isUrl is deprecated in /in/cDq4p on line 9 Deprecated: Creation of dynamic property XmlArrayAccessIterator::$isUrl is deprecated in /in/cDq4p on line 9 Warning: Undefined array key 1 in /in/cDq4p on line 27 Fatal error: Uncaught Error: Call to a member function asXML() on null in /in/cDq4p:28 Stack trace: #0 /in/cDq4p(75): XmlArrayAccessIterator->offsetGet(1) #1 {main} thrown in /in/cDq4p on line 28
Process exited with code 255.
Output for 8.1.0 - 8.1.27
Deprecated: Return type of XmlArrayAccessIterator::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 13 Deprecated: Return type of XmlArrayAccessIterator::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 18 Deprecated: Return type of XmlArrayAccessIterator::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 39 Deprecated: Return type of XmlArrayAccessIterator::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 44 Deprecated: Return type of XmlArrayAccessIterator::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/cDq4p on line 49 Warning: Undefined array key 1 in /in/cDq4p on line 27 Fatal error: Uncaught Error: Call to a member function asXML() on null in /in/cDq4p:28 Stack trace: #0 /in/cDq4p(75): XmlArrayAccessIterator->offsetGet(1) #1 {main} thrown in /in/cDq4p on line 28
Process exited with code 255.
Output for 8.0.0 - 8.0.30
Warning: Undefined array key 1 in /in/cDq4p on line 27 Fatal error: Uncaught Error: Call to a member function asXML() on null in /in/cDq4p:28 Stack trace: #0 /in/cDq4p(75): XmlArrayAccessIterator->offsetGet(1) #1 {main} thrown in /in/cDq4p on line 28
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined offset: 1 in /in/cDq4p on line 27 Fatal error: Uncaught Error: Call to a member function asXML() on null in /in/cDq4p:28 Stack trace: #0 /in/cDq4p(75): XmlArrayAccessIterator->offsetGet(1) #1 {main} thrown in /in/cDq4p on line 28
Process exited with code 255.
Output for 7.3.32 - 7.3.33
Fatal error: Uncaught Error: Call to a member function asXML() on null in /in/cDq4p:28 Stack trace: #0 /in/cDq4p(75): XmlArrayAccessIterator->offsetGet(1) #1 {main} thrown in /in/cDq4p on line 28
Process exited with code 255.
Output for 5.6.0 - 5.6.28
Notice: Undefined offset: 1 in /in/cDq4p on line 27 Fatal error: Call to a member function asXML() on null in /in/cDq4p on line 28
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38
Notice: Undefined offset: 1 in /in/cDq4p on line 27 Fatal error: Call to a member function asXML() on a non-object in /in/cDq4p on line 28
Process exited with code 255.
Output for 5.1.3 - 5.1.6, 5.2.0 - 5.2.17
Notice: Undefined offset: 1 in /in/cDq4p on line 27 Fatal error: Call to a member function asXML() on a non-object in /in/cDq4p on line 28
Process exited with code 255.
Output for 5.1.2
Fatal error: Call to undefined method SimpleXMLIterator::getName() in /in/cDq4p on line 20
Process exited with code 255.
Output for 5.0.5, 5.1.0 - 5.1.1
Fatal error: Uncaught exception 'Exception' with message 'SimpleXMLElement::__construct() expects exactly 1 parameter, 3 given' in /in/cDq4p:10 Stack trace: #0 /in/cDq4p(10): SimpleXMLElement->__construct('<?xml version="...', 0, false) #1 /in/cDq4p(72): XmlArrayAccessIterator->__construct('<?xml version="...', false) #2 {main} thrown in /in/cDq4p on line 10
Process exited with code 255.
Output for 5.0.3 - 5.0.4
Fatal error: Uncaught exception 'Exception' with message 'SimpleXMLElement::__construct() expects exactly 1 parameter, 3 given' in /in/cDq4p:10 Stack trace: #0 /in/cDq4p(10): SimpleXMLIterator->__construct('<?xml version="...', 0, false) #1 /in/cDq4p(72): XmlArrayAccessIterator->__construct('<?xml version="...', false) #2 {main} thrown in /in/cDq4p on line 10
Process exited with code 255.
Output for 5.0.0 - 5.0.2
Fatal error: Uncaught exception 'Exception' with message 'SimpleXMLElement::__construct() expects exactly 1 parameter, 3 given' in /in/cDq4p:10 Stack trace: #0 /in/cDq4p(72): XmlArrayAccessIterator->__construct('<?xml version="...', 0, false) #1 {main} thrown in /in/cDq4p on line 10
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting '{' in /in/cDq4p 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
Parse error: parse error, unexpected T_STRING, expecting '{' in /in/cDq4p on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'{'' in /in/cDq4p on line 3
Process exited with code 255.

preferences:
256.05 ms | 401 KiB | 396 Q