PHP配列操作を使用して、最初の配列を2番目の配列に変換する方法を教えてください。
最初の配列:-
Array
(
[0] => Array
(
[actual_release_date] => 2013-06-07 00:00:00
[distributors] => 20th Century Fox / 20th Century Fox Animation / Fox 2000 Pictures / Fox Searchlight
)
[1] => Array
(
[actual_release_date] => 2013-06-28 11:11:00
[distributors] => 20th Century Fox / 20th Century Fox Animation / Fox 2000 Pictures / Fox Searchlight
)
)
2 番目の配列:-
Array
(
[0] => Array
(
[actual_release_date] => array( 0=>2013-06-07 00:00:00 , 1=> 2013-06-28 11:11:00 )
[distributors] => 20th Century Fox / 20th Century Fox Animation / Fox 2000 Pictures / Fox Searchlight
)
)
2 番目の要素が共通で、最初の要素が異なる場合、それを 1 つの配列にグループ化する必要があります。
前もって感謝します。