<?php $array = [ ["item_id" => "1", "item_name" => "a"], ["item_id" => "2", "item_name" => "b"], ["item_id" => "3", "item_name" => "c"], ["item_id" => "4", "item_name" => "d"], ["item_id" => "5", "item_name" => "e"], ["item_id" => "6", "item_name" => "f"] ]; $val = [10, 11, 12]; $bump = count($array) - count($val); foreach ($val as $i => $number) { $array[$i + $bump]['value'] = $number; } var_export($array);
You have javascript disabled. You will not be able to edit any code.