<?php function appendToValues(&$array, $value) { foreach ($array as &$item) { if ($item['attribute_code'] === 'harddisk') { $item['attribute_value'][] = $value; } elseif(is_array($item['attribute_value'])) { appendToValues($item['attribute_value'], $value); } } } $array = [ 3 => [ 'attribute_code' => 'category', 'attribute_value' => [ 4 => [ 'attribute_code' => 'hardware', 'attribute_value' => [ 5 => [ 'attribute_code' => 'harddisk', 'attribute_value' => [ 6 => [ 'attribute_code' => 'small', 'attribute_value' => '132gb', ], ], ], ], ], ], ], ]; var_dump($array); appendToValues($array, ['attribute_code' => 'medium', 'attribute_value' => '256gb']); var_dump($array);
You have javascript disabled. You will not be able to edit any code.