I am doing a very small online store application in PHP. So I have an array of maps in PHP. I want to search for a string (a product) in the array. I looked at array_search
You can user regular expressions on each and every array element like
foreach($array as $value) { //... your search statement for $value }