<?php
$x = <<<XML
<items>
<hats>
<a id="Chicago BULLS" img="bulls.jpeg" cost="$25.00" />
<b id="Toronto RAPTORS" img="raptors.jpeg" cost="$25.00" />
<c id="Orlando MAGIC" img="magic.jpeg" cost="$25.00" />
</hats>
<clothes>
<a id="Chicago BULLS 23" img="bullstee.jpeg" cost="$30.00" />
<b id="Toronto RAPTORS 23" img="torontotee.jpeg" cost="$30.00" />
<c id="Orlando MAGIC 23" img="magictee.jpeg" cost="$30.00" />
</clothes>
</items>
XML;
$xml = simplexml_load_string($x);
foreach ($xml->children() as $name => $value) {
echo "$name: <br />";
foreach ($value->children() as $item) {
echo "$item[id], $item[img], $item[cost]<br />";
}
}
- Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.27, 8.3.0 - 8.3.16, 8.4.1 - 8.4.3
- hats: <br />Chicago BULLS, bulls.jpeg, $25.00<br />Toronto RAPTORS, raptors.jpeg, $25.00<br />Orlando MAGIC, magic.jpeg, $25.00<br />clothes: <br />Chicago BULLS 23, bullstee.jpeg, $30.00<br />Toronto RAPTORS 23, torontotee.jpeg, $30.00<br />Orlando MAGIC 23, magictee.jpeg, $30.00<br />
preferences:
129.49 ms | 409 KiB | 5 Q