Is there PHP function (or oneliner) for finding one of strings (stored in array) in other string?
# find one of those strings
$needles = [
'aaa',
'bbb',
];
# anywhere in this string
$haystack = 'ccccccaaa';
# returns TRUE when $haystack contains any of strings in $needles
is_there($needles , $haystack) === true