我试图在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};
}
?>
答案 0 :(得分:4)
如果可能的话,首先将变量设置为数组要容易得多。
但要做你正在尝试做的事情
$test1 = 'test1';
$test2 = 'test2';
$test0 = 'test0';
for($i=1;$i<=9;$i++){
$j = $i%3;
echo ${"test".$j};
}
答案 1 :(得分:0)
$test1 = 'test1';
$test2 = 'test2';
$test0 = 'test0';
for($i=1;$i<=9;$i++){
$j = $i%3;
echo $colonne.$j;
}
&GT;