<?php $a = [ [['Name' => 'kumar'],['Name' => 'siva']], [['Name' => 'Arun'],['Name' => 'Prem']] ]; foreach ($a as $i => $group) { $result[$i][] = ['Name' => implode(', ', array_column($group, 'Name'))]; } var_export($result);
You have javascript disabled. You will not be able to edit any code.