在我的項目中,我有以下幾種數組。請幫助我找到解決方案。 數組在下面給出,請參考。 看起來像跟隨。將數組轉換爲另一個數組
[0] => Array
(
[Notification] => Array
(
[id] => 135
[notification_date] => 2013-09-18
[short_desc] => dsfdfdfdf
[long_desc] =>
)
[NotificationProduct] => Array
(
[0] => Array
(
[id] => 41
[notification_id] => 135
[product_id] => 20
[Product] => Array
(
[id] => 20
[category_id] => 2
[name] => asasasa
)
)
[1] => Array
(
[id] => 42
[notification_id] => 135
[product_id] => 21
[Product] => Array
(
[id] => 21
[category_id] => 2
[name] => corn flakcf
)
)
)
)
我有以上類型array.Now我想把它轉換到以下方式:
[0] => Array
(
[Notification] => Array
(
[id] => 135
[notification_date] => 2013-09-18
[short_desc] => dsfdfdfdf
[long_desc] =>
)
[NotificationProduct] => Array
(
[0] => Array
(
[id] => 41
[notification_id] => 135
[product_id] => 20
[name] => asasasa
)
[1] => Array
(
[id] => 42
[notification_id] => 135
[product_id] => 21
[name] => corn flakcf
)
)
)
Is there any way to convert it into that kind of array.
謝謝!
你應該表現出你的方法 –
有是一種方式:通過修改它來匹配y,通過原始數組循環我們的預期結構 –