Is there any function that can do what strpos
does, but on the elements of an array ? for example I have this array :
Array
(
[0] => a66,b30
[1] => b30
)
each element of the array can contain a set of strings, separated by commas.
Let's say i'm looking for b30. I want that function to browse the array and return 0 and 1. can you help please ? the function has to do the oppsite of what this function does.