I have a 1-dimensional array($array) with about 15, 000 elements. Each element is a string of 5 to 20 words. I made a function to find the 1st element in $array which contains all the words in a substring($substr) as follows. This works OK, but I would like to know if there is a more efficient way o...