3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = new SimpleXMLElement('<root name="toplevel"></root>'); $f1 = new SimpleXMLElement('<child ="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
Warning: SimpleXMLElement::__construct(): Entity: line 1: parser error : error parsing attribute name in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): <child ="1">alpha</child> in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): ^ in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): Entity: line 1: parser error : attributes construct error in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): <child ="1">alpha</child> in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): ^ in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): Entity: line 1: parser error : Couldn't find end of Start Tag child line 1 in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): <child ="1">alpha</child> in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): ^ in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): Entity: line 1: parser error : Extra content at the end of the document in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): <child ="1">alpha</child> in /in/sBEM0 on line 3 Warning: SimpleXMLElement::__construct(): ^ in /in/sBEM0 on line 3 Fatal error: Uncaught Exception: String could not be parsed as XML in /in/sBEM0:3 Stack trace: #0 /in/sBEM0(3): SimpleXMLElement->__construct('<child ="1">alp...') #1 {main} thrown in /in/sBEM0 on line 3
Process exited with code 255.

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:
76.89 ms | 403 KiB | 8 Q