6
我有一個PHP腳本獲取$_POST
來決定返回哪個數組。例如:PHP加入兩個變量名稱
$n = $_POST['n']; // 1, 2 or 3
$a1 = array ('something', 'something else', 'another thing');
$a2 = array ('something 2', 'something else 2', 'another thing 2');
$a3 = array ('something 3', 'something else 3', 'another thing 3');
現在我想對應於$n
值的陣列,假設"2"
。
我怎麼能說echo $a . $n
得到$a2
感謝。
+1:使用數組來存儲一系列數組比使用少量變量要好。 – Raptor