“Array se cruzar” Respostas de código

PHP obtém interseção de duas matrizes

$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

Array se cruzar

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

Respostas semelhantes a “Array se cruzar”

Perguntas semelhantes a “Array se cruzar”

Mais respostas relacionadas para “Array se cruzar” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código