“Verifique se algum dos valores múltiplos na matriz” Respostas de código

Verifique se algum dos valores múltiplos na matriz

function in_array_any($needles, $haystack) {
   return !empty(array_intersect($needles, $haystack));
}

echo in_array_any( [3,9], [5,8,3,1,2] ); // true, since 3 is present
echo in_array_any( [4,9], [5,8,3,1,2] ); // false, neither 4 nor 9 is present
Dizzy Dunlin

PHP Verifique se todos os valores da matriz são os mesmos

// All values are equal
if (count(array_unique($allvalues)) === 1 && end($allvalues) === 'true') {

}

// Check the thing you don't want
if (in_array('false', $allvalues, true)) {

}
SantiBM

Verifique se algum valores é o mesmo em uma matriz php

if(count(array_unique($array, SORT_REGULAR)) < count($array)) {
    // $array has duplicates
} else {
    // $array does not have duplicates
}

Valor múltiplo corresponde ao PHP da matriz

$uniqueKeys = array_unique($list[0])

foreach ($uniqueKeys as $uniqueKey)
{
  $v = array_keys($list[0], $uniqueKey);

  if (count($v) > 1)
  {
    foreach ($v as $key)
    {
      // Work with $list[0][$key]
    }

  }
}
Shiny Snake

Respostas semelhantes a “Verifique se algum dos valores múltiplos na matriz”

Perguntas semelhantes a “Verifique se algum dos valores múltiplos na matriz”

Mais respostas relacionadas para “Verifique se algum dos valores múltiplos na matriz” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código