<?php
$keys = array(1,1,2,1,1);
$values = array(1,1,1,1,1);
$result = array_combine ($keys, $values);
?>
Я хочу добавить значения второго массива.Например, $result
будет отображать вывод как
$result[1] = 4, // it will add the all values for the $keys of 1 ,
$result[2] = 1,