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; } } }

preferences:
55.33 ms | 402 KiB | 5 Q