<?php $a = [ 'Arvind' => 'Basu', 'Rampal' => 'Singh' ]; $b = [ 'Anjali' => 'Basu', 'Roopashri' => 'Singh' ]; $c = array_merge($a, $b); ksort($c); echo print_r($c);
You have javascript disabled. You will not be able to edit any code.