I just wrote this function :
function Array_in_String($Haystack1, $Values1)
{
foreach ($Values1 as $token1)
{
if (strpos($Haystack1, $token1) !== false) return true;
}
}
that basically searches a string $Haystack1 for multiple values in an array $Values1 and returns true if hits a match.
Before that, I searched a lot in PHP for a similar string function. I'm still wondering if PHP has a similar function?