我想3個參數傳遞給一個腳本,其中第三個參數$_GET['value3']
應該是一個數組
$_GET['value1']
$_GET['value2']
$_GET['value3'] //an array of items
我打電話喜歡這個劇本(請注意我的語法value3
,我不知道這是正確的)
http://localhost/test.php?value1=test1&value2=test2&value3=[the, array, values]
我再通過第三個參數value3
這是陣列
//process the first input $_GET['value1']
//process the second input $_GET['value2']
//process the third input $_GET['value3'] which is the array
foreach($_GET['value3'] as $arrayitem){
echo $arrayitem;
}
,但我得到的錯誤Invalid argument supplied for foreach()
我不知道如果我的方法是正確的。可以將部分弄清楚你會如何去這樣做之類的事情
+1,用於詳細解釋,以及應用服務器的具體信息。 – 2010-05-25 23:16:17
是什麼讓'value3 =數組,值更清潔?它的眼睛可能更乾淨,但它的代碼肯定不夠乾淨。 – webbiedave 2010-05-25 23:19:11
我認爲在使用該語言進行開發時依賴語言功能並不是太糟糕,大聲笑.. – 2010-05-25 23:21:35