Answers for "php array_search multiple value"

PHP
0

multiple value match in array php

if (in_array('a', $array_under_test) || in_array('b', $array_under_test)) {
  // Success!
}
Posted by: Guest on September-25-2020
0

php find multiple value in array

$haystack = array(...);

$target = array('foo', 'bar');

if(count(array_intersect($haystack, $target)) == count($target)){
    // all of $target is in $haystack
}
Posted by: Guest on October-04-2021

Code answers related to "php array_search multiple value"

Browse Popular Code Answers by Language