2

我试图在http://php.net/manual/en/language.variables.variable.php之后连接几个变量,但我不明白为什么它不起作用

<?PHP

$test1 = 'test1';
$test2 = 'test2';
$test0 = 'test0';

for($i=1;$i<=9;$i++){
    $j = $i%3;
    echo ${$test.$j};
}

?>
4

2 回答 2

4

如果可能的话,首先将变量设置为数组会容易得多。

但是要做你正在尝试做的事情

$test1 = 'test1';
$test2 = 'test2';
$test0 = 'test0';

for($i=1;$i<=9;$i++){
    $j = $i%3;
    echo ${"test".$j};
} 
于 2013-06-11T13:56:46.307 回答
0

尝试一下。

  $test1 = 'test1';
  $test2 = 'test2';
  $test0 = 'test0';

for($i=1;$i<=9;$i++){
$j = $i%3;
echo $colonne.$j;
}

?>

于 2013-06-11T13:55:06.630 回答