在PHP中调用字符串中的变量

时间:2016-01-13 09:39:50

标签: php variables

我需要以最短的方式调用类似的变量。

$test = new stdClass();    
$test->var0=0;    
$test->var1=1;    
$test->var2=2; 

现在我需要在循环中回显所有3个变量,而不是像这样:

echo $test->var0;   
echo $test->var1;
echo $test->var2;

1 个答案:

答案 0 :(得分:3)

试试这个 -

for($i = 0; $i < 3; $i++) {
    echo $test->{'var' . $i};
}