我需要一個數組轉換格式爲:轉換多維數組組織陣列在PHP
Array (
[size] => P
[code] => Array (
[0] => C01
[1] => B01
[2] = A02
)
)
到多的人是這樣的:
Array ([size] => P [code] => C01)
Array ([size] => P [code] => B01)
Array ([size] => P [code] => A02)
我會怎麼做,使用PHP代碼?
使用循環。你有沒有嘗試過? – Eugene