<?php $cars = [ 0 => ["id" => 1, "name" => "FORD"], 1 => ["id" => 2, "name" => "BMW"], 2 => ["id" => 3, "name" => "FIAT"], 3 => ["id" => 4, "name" => "RENAULT"], 4 => ["id" => 5, "name" => "BENTLEY"], ]; $selection = [ 0 => "1", 1 => "3", 2 => "4" ]; $carsBySelection = array_filter($cars, function($car) use ($selection) { return in_array($car["id"], $selection); }); print_r($carsBySelection);
You have javascript disabled. You will not be able to edit any code.