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 git.master, git.master_jit, rfc.property-hooks
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" }

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:
63.65 ms | 402 KiB | 8 Q