對你們來說可能是一個簡單的問題。無法在Google上找到它。PHP連接變量
我想連接兩個變量的名稱;
$i=0;
for ($i=0;$i<5;$i++){
if($array[$i]>0){
$test.$i=//do something
}else{
$test.$i=//do something
}
}
//echo $test0 gives me nothing.
//echo $test1 gives me nothing.
我知道我不能使用$ test。$但我不知道該怎麼做。任何幫助?謝謝!
不錯的鏈接! +1給你。 – FlyingCat 2010-05-20 19:05:31
接受的答案,因爲鏈接! :D – FlyingCat 2010-05-20 19:06:51
OP的代碼的最後兩行暗示如果$ i == 0,他試圖訪問$ test0。在這種情況下,如果$ test未定義,那麼$ test將評估爲空字符串,{$ test。$ i}將評估爲「0」。 – Dazarath 2010-05-20 19:08:44