IM混淆...合併可變PHP
像例如:
$Q1 = "hello";
$Q2 = "world";
$Q3 = "StackOverflow";
$i = 1;
while($i < 3) {
$a = "$Q".$i; //I think this is wrong.
echo $a; // i tried ${$a} doesn't work =/
$i++;
}
然後輸出格式:
$Q1
$Q2
$Q3
但沒有輸出這樣的: 你好 世界 StackOverflow
我想要$Q + $i
成爲$Q1
回答是: 「你好」 ......
這些稱爲變量變量或變量名稱變量。 –