我正在創建boardfeet的計算,並且我想將所有提交的數據從表單存儲到數組。我想要做的是,當我提交表單時,數據將被保存在一個數組中,當再次提交時,數據將被添加到數組中。PHP Array - 在多維數組中合併數組
我有一個表單提交一個數組:
Array
(
[0] => Array
(
[length] => 5
[width] => 3
[height] => 2
)
)
我希望它有這個數組:
Array
(
[0] => Array
(
[length] => 3
[width] => 3
[height] => 3
)
[1] => Array
(
[length] => 5
[width] => 5
[height] => 5
)
[2] => Array
(
[length] => 5
[width] => 5
[height] => 5
)
)
你試過什麼? –
您有沒有機會調查[php:array_merge()](http://php.net/manual/en/function.array-merge.php) – Abela
[Array and Associative Array Merge](http:/ /stackoverflow.com/questions/33741689/array-and-associative-array-merge) –