Answers for "php check if element is in array"

PHP
22

check if array has value 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
Posted by: Guest on January-21-2020
14

in_array php

<?php
$os = array("Apple", "Banana", "Lemon");
if (in_array("Apple", $os)) {
    echo "Yeah. Exist Apple";
}
if (!in_array("Buleberry", $os)) {
    echo "Oh, Don't Exist Blueberry!!!";
}
?>
Posted by: Guest on October-02-2020
1

in_array

<?php
  $os = array("Mac", "NT", "Irix", "Linux");
  if (in_array("Irix", $os)) {
      echo "Got Irix";
  }
  if (in_array("mac", $os)) {
      echo "Got mac";
  }
?>
Posted by: Guest on November-10-2020
2

in array php

// Syntax:
in_array ( mixed $needle , array $haystack , bool $strict = false ) : bool

// Example:
$fruits = array('apple', 'banana', 'orange');
in_array('apple', $fruits); // true
in_array('mango', $fruits); // false
Posted by: Guest on February-22-2021
2

php in_array

<?php
$a = array(array('p', 'h'), array('p', 'r'), 'o');

if (in_array(array('p', 'h'), $a)) {
    echo "'ph' a été trouvé\n";
}

if (in_array(array('f', 'i'), $a)) {
    echo "'fi' was found\n";
}

if (in_array('o', $a)) {
    echo "'o' a été trouvé\n";
}
?>
  /*
  result :
  
    'ph' a été trouvé
  'o' a été trouvé
Posted by: Guest on April-09-2020

Code answers related to "php check if element is in array"

Browse Popular Code Answers by Language