<?php $arr =[ 0 => [ "id" => 4, "manufacturer" => "Siemens", ], 1 => [ "id" => 5, "manufacturer" => "Dell" ] ]; $res = array_combine(array_column($arr, "id"), array_column($arr, "manufacturer")); Var_dump($res);
You have javascript disabled. You will not be able to edit any code.