3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = new SimpleXMLElement('<root name="toplevel"></root>'); $f1 = new SimpleXMLElement('<child pos="1">alpha</child>'); $f2 = new SimpleXMLElement('<child pos="2">beta</child>'); $f3 = new SimpleXMLElement('<child pos="3">gamma</child>'); $x->{$f1->getName()} = $f1; $x->{$f2->getName()}[] = $f2; $x->{$f3->getName()}[] = $f3; echo 'count child=',$x->count(),"\n"; echo $x->asXML(); foreach ( $x->children() as $foo ) { var_dump($foo); }
Output for 5.6.11 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 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.7
count child=3 <?xml version="1.0"?> <root name="toplevel"><child>alpha</child><child>beta</child><child>gamma</child></root> object(SimpleXMLElement)#8 (1) { [0]=> string(5) "alpha" } object(SimpleXMLElement)#9 (1) { [0]=> string(4) "beta" } object(SimpleXMLElement)#8 (1) { [0]=> string(5) "gamma" }
Output for 5.6.0 - 5.6.10
count child=3 <?xml version="1.0"?> <root name="toplevel"><child>alpha</child><child>beta</child><child>gamma</child></root> object(SimpleXMLElement)#8 (0) { } object(SimpleXMLElement)#9 (0) { } object(SimpleXMLElement)#8 (1) { [0]=> string(5) "gamma" }

preferences:
200.18 ms | 402 KiB | 298 Q