I am wondering how to complete multiple strpos checks.
Let me clarify: I want strpos to check the variable \"COLOR\" to see if any numbers fro
try preg match for multiple
if (preg_match('/word|word2/i', $str))
strpos() with multiple needles?