PHP-də XML teq qrupunun atributları
Indi tutaq ki, atributları olan bir neçə teqimiz var:
<root>
<tag attr="val1">text1</tag>
<tag attr="val2">text2</tag>
<tag attr="val3">text3</tag>
</root>
Gəlin bu teqlərin mətnlərini əldə edək:
<?php
foreach ($xml->tag as $tag) {
echo $tag; // 'text1', 'text2', 'text3'
}
?>
Indi isə - atributların qiymətlərini:
<?php
foreach ($xml->tag as $tag) {
echo $tag['attr']; // 'val1', 'val2', 'val3'
}
?>
Aşağıdaki XML verilmişdir:
<root>
<product cost="100" amount="3">
prod1
</product>
<product cost="200" amount="4">
prod2
</product>
<product cost="300" amount="5">
prod3
</product>
</root>
Hər bir məhsulun adını, qiymətini və miqdarını ekranda çıxarın.