echo $xml->SLOT1->Effect;
echo $xml->SLOT2->Effect;
echo $xml->SLOT3->Effect;
有没有办法通过使用for
循环来简化这个?我尝试了这个,但它没有回音:
for ($x = 1; $x <= 3; $x++) {
echo $xml->SLOT[$x]->Effect;
}
答案 0 :(得分:3)
您可以使用
$xml->{"SLOT".$x}->Effect;
答案 1 :(得分:1)
for ($x = 1; $x <= 3; $x++) {
echo $xml->{SLOT.$x}->Effect;
}