$str = 'Привет, меня зовут Владимир. Мне 29 лет'
$array_hello = ['привет','здарова','хай']
$array_car = ['жигуль','мерседес','ауди']
if(in_array(mb_strtolower(*СТРОКА*), *МАССИВ-1*)) return *МАССИВ-1*;
if(in_array(mb_strtolower(*СТРОКА*), *МАССИВ-2*)) return *МАССИВ-2*;
<?php
function strpos_array($haystack, $needles) {
if ( is_array($needles) ) {
foreach ($needles as $str) {
if ( is_array($str) ) {
$pos = strpos_array($haystack, $str);
} else {
$pos = strpos($haystack, $str);
}
if ($pos !== FALSE) {
return $pos;
}
}
} else {
return strpos($haystack, $needles);
}
}
// Test
echo strpos_array('This is a test', array('test', 'drive')); // Output is 10