3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = <<<XML <sets> <settype type="hr" paletteid="2" mand_m_0="0" mand_f_0="0" mand_m_1="0" mand_f_1="0"> <set id="175" gender="M" club="0" colorable="0" selectable="0" preselectable="0"> <part id="996" type="hr" colorable="0" index="0" colorindex="0"/> </set> </settype> <settype type="ch" paletteid="3" mand_m_0="1" mand_f_0="1" mand_m_1="0" mand_f_1="1"> <set id="680" gender="F" club="0" colorable="1" selectable="1" preselectable="0"> <part id="17" type="ch" colorable="1" index="0" colorindex="1"/> <part id="17" type="ls" colorable="1" index="0" colorindex="1"/> <part id="17" type="rs" colorable="1" index="0" colorindex="1"/> </set> </settype> </sets> XML; $xml = simplexml_load_string($string); print_r($xml); exit; foreach($xml as $a => $b) { if($a == 'settype') { echo (string)$b->attributes()->id; exit; print_r($b); exit; foreach($b as $c => $d) { print_r($d); exit; } } }
Output for git.master, git.master_jit, rfc.property-hooks
SimpleXMLElement Object ( [settype] => Array ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [type] => hr [paletteid] => 2 [mand_m_0] => 0 [mand_f_0] => 0 [mand_m_1] => 0 [mand_f_1] => 0 ) [set] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 175 [gender] => M [club] => 0 [colorable] => 0 [selectable] => 0 [preselectable] => 0 ) [part] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 996 [type] => hr [colorable] => 0 [index] => 0 [colorindex] => 0 ) ) ) ) [1] => SimpleXMLElement Object ( [@attributes] => Array ( [type] => ch [paletteid] => 3 [mand_m_0] => 1 [mand_f_0] => 1 [mand_m_1] => 0 [mand_f_1] => 1 ) [set] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 680 [gender] => F [club] => 0 [colorable] => 1 [selectable] => 1 [preselectable] => 0 ) [part] => Array ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 17 [type] => ch [colorable] => 1 [index] => 0 [colorindex] => 1 ) ) [1] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 17 [type] => ls [colorable] => 1 [index] => 0 [colorindex] => 1 ) ) [2] => SimpleXMLElement Object ( [@attributes] => Array ( [id] => 17 [type] => rs [colorable] => 1 [index] => 0 [colorindex] => 1 ) ) ) ) ) ) )

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:
70.43 ms | 413 KiB | 8 Q