<?php $input = [ [ "id" => "A12312", "status" => false, "enabled" => true, ], [ "id" => "A12313", "status" => false, "enabled" => false, ], [ "id" => "A12314", "status" => true, "enabled" => false, ], [ "id" => "A12315", "status" => true, "enabled" => true, ], ]; $ids = array_column($input, 'id'); $result = array_combine($ids, $input); var_dump($result);
You have javascript disabled. You will not be able to edit any code.