3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml=simplexml_load_string(<<<XML <?xml version="1.0"?> <settings> <contents> <content> <item>a</item> <title>A</title> <keywords></keywords> </content> <content> <item>b</item> <title>B</title> <keywords></keywords> </content> <content> <item>c</item> <title>C</title> <keywords></keywords> </content> </contents> <errors_escape> <error_escape>one</error_escape> <error_escape>two</error_escape> <error_escape>three</error_escape> </errors_escape> </settings> XML ); $all_settings=array(); $error_escape=array(); foreach($xml->contents->content as $node) { $all_settings[]=array("item"=>strval($node->item),"title"=>strval($node->title),"keywords"=>strval($node->keywords)); } foreach($xml->errors_escape->error_escape as $node) { $error_escape[]=strval($node); } print_r($all_settings); print_r($error_escape);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [item] => a [title] => A [keywords] => ) [1] => Array ( [item] => b [title] => B [keywords] => ) [2] => Array ( [item] => c [title] => C [keywords] => ) ) Array ( [0] => one [1] => two [2] => three )

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