“se croiser” Réponses codées

PHP obtient l'intersection de deux 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

se croiser

array_intersect(array $array, array ...$arrays): array

/* Returns an array containing all of the values in array whose 
   values exist in all of the parameters. */
TomatenTim

Réponses similaires à “se croiser”

Questions similaires à “se croiser”

Plus de réponses similaires à “se croiser” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code