“Cómo verificar si un valor está en matriz en Laravel” Código de respuesta

Compruebe si la matriz tiene valor php

$myArr = [38, 18, 10, 7, "15"];

echo in_array(10, $myArr); // TRUE
echo in_array(19, $myArr); // TRUE

// Without strict check
echo in_array("18", $myArr); // TRUE
// With strict check
echo in_array("18", $myArr, true); // FALSE
Allen

Cómo verificar si un valor está en matriz en Laravel

echo in_array(10, $myArr); // TRUE
echo in_array(19, $myArr); // TRUE
Ugly Unicorn

Respuestas similares a “Cómo verificar si un valor está en matriz en Laravel”

Preguntas similares a “Cómo verificar si un valor está en matriz en Laravel”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código