3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = <<<XML <?xml version='1.0' standalone='yes'?> <movies> <movie> <title>PHP: Behind the Parser</title> <characters> <character> <name>Ms. Coder</name> <actor>Onlivia Actora</actor> </character> <character> <name>Mr. Coder</name> <actor>El Act&#211;r</actor> </character> </characters> <plot> So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. </plot> <great-lines1> <line>PHP solves all my web problems</line> </great-lines1> <great-lines2> <line>PHP solves all my web problems</line> <![CDATA[always be testing!]]> </great-lines2> <great-lines3> PHP solves all my web problems <![CDATA[always be testing!]]> </great-lines3> <rating type="thumbs">7</rating> <rating type="stars">5</rating> </movie> </movies> XML; $sml = new SimpleXMLElement ($xml); $result1 = $sml->xpath('/movies/movie/great-lines1'); $result2 = $sml->xpath('/movies/movie/great-lines2'); $result3 = $sml->xpath('/movies/movie/great-lines3'); var_dump($result1); var_dump($result2); var_dump($result3); echo "\n<br>--------------------\n"; echo (string) $result1; echo "\n<br>--------------------\n"; echo (string) $result2; echo "\n<br>--------------------\n"; echo (string) $result3;
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { [0]=> object(SimpleXMLElement)#2 (1) { ["line"]=> string(30) "PHP solves all my web problems" } } array(1) { [0]=> object(SimpleXMLElement)#3 (1) { ["line"]=> string(30) "PHP solves all my web problems" } } array(1) { [0]=> object(SimpleXMLElement)#4 (0) { } } <br>-------------------- Warning: Array to string conversion in /in/T2f5r on line 57 Array <br>-------------------- Warning: Array to string conversion in /in/T2f5r on line 61 Array <br>-------------------- Warning: Array to string conversion in /in/T2f5r on line 65 Array

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