Skip to content
Advertisement

Search for multiple sequences within an array

I want to search within an array that I have. The elements to be searched in this array are out of order, their content will be checked only by matching their keys. I could not reach the correct result in a kind of multiple search

JavaScript

I want to search $search variable in $array variable I want to get true or false value back

Code i tested myself failed

JavaScript

Advertisement

Answer

If I understand correctly, this should do it for you.

JavaScript

The test for this code produces 4 true and 3 falses which matches what you provided.

JavaScript

The array_diff function is the magic because it:

Compares array1 against one or more other arrays and returns the values in array1 that are not present in any of the other arrays.

So if there’s anything “extra” in the search it will return that, otherwise it returns an empty array

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement