“PHP obtient l'intersection des tableaux” Réponses codées

PHP obtient l'intersection des tableaux

$array1 = [1, 2];
$array2 = [2, 3, 4];
$commonValue = array_intersect($array1, $array2);
//$commonValue = 2
// If you have X number of arrays you can do:
$array1 = [1, 2];
$array2 = [2, 3, 4];
$arrayOfArrays = [$array1, $array2];
$commonValue = array_intersect(...$arrayOfArrays);
Unsightly Unicorn

JavaScript obtient l'intersection de deux tableaux

function getArraysIntersection(a1,a2){
    return  a1.filter(function(n) { return a2.indexOf(n) !== -1;});
}
var colors1 = ["red","blue","green"];
var colors2 = ["red","yellow","blue"];
var intersectingColors=getArraysIntersection(colors1, colors2); //["red", "blue"]

Grepper

Réponses similaires à “PHP obtient l'intersection des tableaux”

Questions similaires à “PHP obtient l'intersection des tableaux”

Plus de réponses similaires à “PHP obtient l'intersection des tableaux” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code