I have an array of strings.
I have an array of keywords.
i scroll through each row and store them in the mysql database if it contains any keywords.
I am currently using several stristr () which are becoming difficult.
Is it possible to do something like stristr($string, array("ship","fukc","blah"));?
source
share