SimpleXML动态元素名称

时间:2012-05-19 06:10:47

标签: php simplexml

echo $xml->SLOT1->Effect;
echo $xml->SLOT2->Effect;
echo $xml->SLOT3->Effect;

有没有办法通过使用for循环来简化这个?我尝试了这个,但它没有回音:

for ($x = 1; $x <= 3; $x++) {
   echo $xml->SLOT[$x]->Effect;
}

2 个答案:

答案 0 :(得分:3)

您可以使用

$xml->{"SLOT".$x}->Effect;

答案 1 :(得分:1)

for ($x = 1; $x <= 3; $x++) {
   echo $xml->{SLOT.$x}->Effect;
}