it is possible to add a key value in array following my example
$a = array( '1' => '5', '2' => '7', '3' => '1');
now i will add more array key value like this
$b = array( '1' => '5', '2' => '2');
Now i want output like this sum of same key
$c = array( '1' => '10', '2' => '9', '3' => '1');
if i want to remove array like this out put
$c = array( '1' => '7', '2' => '9', '3' => '1');