Код: Выделить всё
$arr1 = array(
array(
'Class' => 'Class 1',
'Student' => array('Name one')
),
array(
'Class' => 'Class 2',
'Student' => array('Name one')
),
);
$arr2 = array(
array(
'Class' => 'Class 1',
'Student' => array('Name two, Name three')
),
array(
'Class' => 'Class 2',
'Student' => array('Name Two, Name Three, Name Four')
),
);
Код: Выделить всё
$result = array(
array(
'Class' => 'Class 1',
'Student' => array('Name one, Name two, Name three')
),
array(
'Class' => 'Class 2',
'Student' => array('Name one, Name Two, Name Three, Name Four')
),
);
Подробнее здесь: https://stackoverflow.com/questions/430 ... tring-from