如何用不同的名字環$ _ POST變量,從print_r的輸出這樣的:
帖子:
$_POST['post_access_1'];
$_POST['post_access_2'];
$_POST['post_access_3'];
$_POST['post_access_4'];
Array
(
[post_access_1] = Array
(
[0] = 1
[1] = 6
)
[post_access_2] = Array
(
[0] = 1
[1] = 4
)
[post_access_3] = Array
(
[0] = 2
[1] = 5
[2] = 6
)
[post_access_4] = Array
(
[0] = 2
[1] = 5
)
)
其中
1 => 1,6
2 => 1,4
3 => 2,5,6
4 => 2,5
我有搜索並看到,但沒有與不同的名稱。
三江源
這裏有什麼問題嗎?你想要什麼?你試圖實現你的目標? –
foreach($ _ POST爲$ postKey => $ postValue){ echo「$ postKey = $ postValue \ n」; } – nonsensei
在你的數組中使用var_export()並更新你的問題我們可以幫到你 –